09 2013 档案

摘要:1 /*堆排序(大顶堆) 2011.9.14*/ 2 3 #include 4 #include 5 using namespace std; 6 7 void HeapAdjust(int *a,int i,int size) //调整堆 8 { 9 int lchild=2*i; //i的左孩子节点序号 10 int rchild... 阅读全文
posted @ 2013-09-27 13:18 dorothychai 阅读(215) 评论(0) 推荐(0) 编辑
摘要:1 // 主程序 (.cpp文件) 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include "BobbleSort.h" 8 #include "QuickSort.h" 9 #include "HeapSort.h" 10 11 int main() 12 { ... 阅读全文
posted @ 2013-09-27 12:58 dorothychai 阅读(500) 评论(0) 推荐(0) 编辑
摘要:1 #include 2 using namespace std; 3 4 struct IA 5 { 6 virtual void funInIA() = 0; 7 }; 8 9 struct IB 10 { 11 virtual void funInIB() = 0; 12 }; 13 14 struct C : public IA, publi... 阅读全文
posted @ 2013-09-26 14:47 dorothychai 阅读(222) 评论(0) 推荐(0) 编辑
摘要:http://blog.jobbole.com/46797/#jtss-tsina 一、广泛了解,从科普书籍开始 选择计算机专业的同学,也许是因为原先有一定的基础,也许是因为一时的激情,但更多的人,可能对自己的选择没有深刻的认识,或多或少对计算机专 业有一些神秘的感觉。自己究竟是否喜欢这个学科?才华能够在哪个分支领域有所施展?抑或是真的不适合这个专业?诸多疑问,解决的方法首先便是了解和认识我 们... 阅读全文
posted @ 2013-09-17 20:47 dorothychai 阅读(211) 评论(0) 推荐(0) 编辑
摘要:fdisk -l 无法挂载 NTFS格式的分区:mount: unknown filesystem type ‘ntfs’。 问题: # mount –t ntfs /dev/sdb1 /mnt/usb mount: unknown filesystem type ‘ntfs’ 这是由于CentOS release 5.3(Final)上无法识别N... 阅读全文
posted @ 2013-09-14 10:43 dorothychai 阅读(409) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示