上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 61 下一页

2007年12月24日

HDU1009 FatMouse' Trade

摘要: 简单的贪心算法 阅读全文

posted @ 2007-12-24 10:41 Phinecos(洞庭散人) 阅读(967) 评论(0) 推荐(0) 编辑

2007年12月23日

HDU1008 Elevator

摘要: 题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1008 #include using namespace std; int main(int argc, char *argv[]) { int n,curLev,desLev,sumTime,tmp; while(cin>>n&&n!=0) { curLev = 0;//初始层为0 sumTim... 阅读全文

posted @ 2007-12-23 22:29 Phinecos(洞庭散人) 阅读(489) 评论(0) 推荐(0) 编辑

HDU1004 Let the Balloon Rise

摘要: 两次遍历map容器,算法复杂度O(n) 阅读全文

posted @ 2007-12-23 14:44 Phinecos(洞庭散人) 阅读(2064) 评论(5) 推荐(0) 编辑

HDU1003 最大子序列和问题

摘要: 题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1003 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->#include #include using namespace std; in... 阅读全文

posted @ 2007-12-23 13:47 Phinecos(洞庭散人) 阅读(2386) 评论(3) 推荐(0) 编辑

2007年12月22日

HDU1002 大数相加

摘要: 题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1002 #include #include using namespace std; void Add(string a,string b,char sum[],int& count) {//大数加法 int len1 = a.length();//数a的长度 int len2 = ... 阅读全文

posted @ 2007-12-22 23:10 Phinecos(洞庭散人) 阅读(1562) 评论(1) 推荐(0) 编辑

2007年12月21日

C++ Exercises(七)

摘要: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->#include #include #include #include using namespace std;template void deSelSort(T arr[],int n){//双端选择排... 阅读全文

posted @ 2007-12-21 12:53 Phinecos(洞庭散人) 阅读(487) 评论(0) 推荐(0) 编辑

2007年12月18日

《Introduction to Computing Systems:From Bits and Gates to C and Beyond》读后感(一)

摘要: 两个理念: 1)抽象。例如先基于晶体管描述逻辑门的实现,一旦领会了逻辑门的抽象,就将其细节丢弃,而是将其视为已经可以直接使用的组件,只有在系统出现问题时,才返回到细节中去进行分析 2)软硬件不加以区分。具体功能到底由谁来实现,以及两者之间的协作,依据的原则只是如何让计算机工作得更好, 图灵机以及图灵解决的问题:计算的可定义性 机器视角来看:从最底层的器件(最终是电子运动),接着是逻辑门电... 阅读全文

posted @ 2007-12-18 10:26 Phinecos(洞庭散人) 阅读(2259) 评论(2) 推荐(0) 编辑

2007年12月15日

An introduction to bitwise operators

摘要: 读了codeproject上的这篇《An introduction to bitwise operators》,前面两个运算符说得不错,但第三个异或运算符感觉不够准确,作者给出的示例不知道有什么用处,不就是把数做了两次异或又回来了么? &运算符用来判定某些位是0还是1: #include using namespace std;int main(void){ int num = 17; ... 阅读全文

posted @ 2007-12-15 20:37 Phinecos(洞庭散人) 阅读(367) 评论(0) 推荐(0) 编辑

2007年11月28日

《C++网络编程》读书笔记(一)

摘要: 要在下面这段代码中找出10个bug,你能做到么? Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1 #include 2 #include 34const int PORT_NUM = 10000;56 int echo_server ()7... 阅读全文

posted @ 2007-11-28 18:25 Phinecos(洞庭散人) 阅读(692) 评论(0) 推荐(0) 编辑

2007年11月27日

【译】Virtual-Machine-based Intrusion Detection on File-aware Block Level Storage

摘要: Youhui Zhang, Yu Gu, Hongyi Wang, Dongsheng Wang Tsinghua National Laboratory for Information Science and Technology, Tsinghua University, 100084, Beijing, China 基于存储器的入侵检查系统(IDS),利用虚拟机和智能磁盘技术。虚拟机监控器... 阅读全文

posted @ 2007-11-27 22:00 Phinecos(洞庭散人) 阅读(781) 评论(0) 推荐(0) 编辑

上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 61 下一页

导航