1 逻辑与(AND)电路2 逻辑 或(OR) 电路3 逻辑 非(NOT) 电路4 振荡电路
分类:
其他 时间:
2015-02-28 00:14:05
收藏:
0 评论:
0 赞:
0 阅读:
297
第7章面向对象分析 面向对象的分析模型:功能模型、分析对象模型、动态模型。一、分析的概念分析类可以划分为实体类、边界类和控制类。在UML语言中,使用构造型>、>和>分别表示实体类、边界类、控制类。分析活动:理解用例模型、识别分析类(识别实体类、识别边界类、识别控制类)、定义交互行为、建立分析类图(定...
分类:
其他 时间:
2015-02-28 00:13:45
收藏:
0 评论:
0 赞:
0 阅读:
296
花了三天时间,终于把这个环境和实现都弄通了一遍。先来个总纲:准备工作:jdk环境,eclipse,gcc环境,cdt插件a.编写带有native声明的java类,b.编译java类c.用javah -jni生成头文件d.使用其他语言(c、c++)实现native methode.生成动态链接库考虑到...
分类:
其他 时间:
2015-02-28 00:13:35
收藏:
0 评论:
0 赞:
0 阅读:
501
1. open() O_RONLY O_WONLY O_RDWR 返回值为 文件描述符fd2. creat() 创建新文件,这个函数的产生是因为最开始open函数没有O_CREAT 功能,所以单独开发的该函数注:不是create,没有e3. read() 读取fd对应的文件内容4. write(.....
分类:
其他 时间:
2015-02-28 00:12:45
收藏:
0 评论:
0 赞:
0 阅读:
212
CRC即循环冗余校验码(Cyclic Redundancy Check)。CRC32算法中,这个生成多项式为:c(x) = 1 + x + x^2 + x^4 + x^5 + x^7 + x^8 + x^10 + x^11 + x^12 + x^16 + x^22 + x^23 + x^26 + x...
分类:
其他 时间:
2015-02-28 00:12:15
收藏:
0 评论:
0 赞:
0 阅读:
293
1515: Play whit bear kid时间限制:1 Sec内存限制:128 MB提交:3解决:2题目描述Happy Spring Festival everyone! Many relatives will visit your house, of course they have bea...
分类:
其他 时间:
2015-02-28 00:11:55
收藏:
0 评论:
0 赞:
0 阅读:
453
http://acm.nyist.net/JudgeOnline/problem.php?pid=86找球号(一)时间限制:3000ms | 内存限制:65535KB难度:3描述在某一国度里流行着一种游戏。游戏规则为:在一堆球中,每个球上都有一个整数编号i(0 2 #include 3 #incl....
分类:
其他 时间:
2015-02-28 00:11:25
收藏:
0 评论:
0 赞:
0 阅读:
344
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 void main(void) 9 {10 int fd,size,len;11 char *buf="Hel...
分类:
其他 时间:
2015-02-28 00:11:16
收藏:
0 评论:
0 赞:
0 阅读:
444
传送门:统计难题分析:Trie树入门题,随便写写练下手感,统计每个节点被多少单词经过就可以了。#include #include #include #include #include #include #include #include #define LL long long#define N 5...
分类:
其他 时间:
2015-02-28 00:10:05
收藏:
0 评论:
0 赞:
0 阅读:
275
题目链接: BZOJ - 1006题目分析这道题是一个弦图最小染色数的裸的模型。弦图的最小染色求法,先求出弦图的完美消除序列(MCS算法),再按照完美消除序列,从后向前倒着,给每个点染能染的最小颜色。求出的颜色数就是最小染色,同时也是最大团。代码#include #include #include ...
分类:
其他 时间:
2015-02-28 00:09:25
收藏:
0 评论:
0 赞:
0 阅读:
314
Hadoop HDFS源码分析 关于数据块的类1.BlocksMap官方代码中的注释为:/** * This class maintains the map from a block to its metadata. * block's metadata currently includes blo...
分类:
其他 时间:
2015-02-28 00:08:55
收藏:
0 评论:
0 赞:
0 阅读:
274
http://acm.nyist.net/JudgeOnline/problem.php?pid=528找球号(三)时间限制:2000ms | 内存限制:3000KB难度:2描述xiaod现在正在某个球场负责网球的管理工作。为了方便管理,他把每个球都编了号,且每个编号的球的总个数都是偶数。有一天,x...
分类:
其他 时间:
2015-02-28 00:08:45
收藏:
0 评论:
0 赞:
0 阅读:
271
(2015.2.27)是在做淘宝的登录界面的时候发现的一个问题;if(e.key=="Backspace" || e.key=="Del"){return false;};以上这句代码是jquery中的keypress事件,在IE中可以通过以上代码顺利识别“空格”“回删”并执行,但在chrome中就...
分类:
其他 时间:
2015-02-28 00:08:35
收藏:
0 评论:
0 赞:
0 阅读:
321
题意:有一种拦截系统,可以打击导弹,但是打击的高度会逐渐下降,因此为了防御导弹攻击,就必须用多个系统,现给出一列导弹依次的高度,求最少需要的系统数。这道题是最长上升子序列问题,但是我一开始其实并没有想到,最开始我的思路是依次剔除最长下降子序列,每剔除一轮就是需要一个拦截系统,然后直到全部数都剔除了就...
分类:
其他 时间:
2015-02-28 00:07:45
收藏:
0 评论:
0 赞:
0 阅读:
368
Partition ListGiven a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.You should ...
分类:
其他 时间:
2015-02-28 00:06:55
收藏:
0 评论:
0 赞:
0 阅读:
489
A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number...
分类:
其他 时间:
2015-02-28 00:06:45
收藏:
0 评论:
0 赞:
0 阅读:
375
B - BCrawling in process... Crawling failed Time Limit:0MS Memory Limit:0KB 64bit IO Format:%lld & %lluSubmit Status Practice SCU 3463DescriptionTime ...
分类:
其他 时间:
2015-02-28 00:05:45
收藏:
0 评论:
0 赞:
0 阅读:
374
原文:大数据量传输时配置WCF的注意事项 WCF传输数据量的能力受到许多因素的制约,如果程序中出现因需要传输的数据量较大而导致调用WCF服务失败的问题,应注意以下配置: 1、MaxReceivedMessageSize:获取或设置配置了此绑定的通道上可以接收的消息的最大大小。 basicHttpBi...
分类:
其他 时间:
2015-02-28 00:05:35
收藏:
0 评论:
0 赞:
0 阅读:
413
1 题目There areNchildren standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following r...
分类:
其他 时间:
2015-02-28 00:04:55
收藏:
0 评论:
0 赞:
0 阅读:
433
require "Cocos2d"require "Cocos2dConstants"local cclog = function(...) print(string.format(...))endlocal TestScene = class("TestScene",function() ...
分类:
其他 时间:
2015-02-28 00:04:35
收藏:
0 评论:
0 赞:
0 阅读:
346