06 2011 档案

摘要:1. pass by reference or pointer:The difference is that a pointer can also point to nothing by pointing to null, where as a reference is always associated with an object. (对于c++的一些F&Q)http://www.parashift.com/c++-faq-lite/references.html2.Differentiate JVM JRE JDK JIT:Java Virtual Machine (JVM) i 阅读全文
posted @ 2011-06-27 15:29 Sw_R 阅读(197) 评论(0) 推荐(0) 编辑
摘要:1 #ifndef THREEMERGESORT_H 2 #define THREEMERGESORT_H 3 4 const int size = 100000; //The size of array 5 6 void ThreeMerge(int *, int, int); 7 void Merge(int *, int, int, int, int); 8 void Merge2(int *,int,int,int); 9 10 #endif 1 #include<iostream> 2 #include"ThreeMergeSort.h" 3 4 us 阅读全文
posted @ 2011-06-20 04:20 Sw_R 阅读(210) 评论(0) 推荐(0) 编辑