随笔分类 -  优秀代码

摘要:http://www.cppblog.com/colys/archive/2009/08/18/25785.htmlhttp://blog.csdn.net/sunyonggao/article/details/1598790http://www.cnblogs.com/qswang/archive/2012/07/06/2579816.html 阅读全文
posted @ 2013-09-27 08:26 renhl 阅读(306) 评论(0) 推荐(0)
摘要:1 // CmpTest.cpp : Defines the entry point for the console application. 2 // 3 4 #include "stdafx.h" 5 6 #include 7 template 8 bool MySort(T* psArray, int i4Num, CMP_FUN CmpFun); 9 10 typedef struct __MYTEST__11 {12 int a;13 int b;14 } S_MYTEST;15 16 //a>b 从小到大17 bool Cmp2(S_MYTEST & 阅读全文
posted @ 2013-09-26 23:55 renhl 阅读(256) 评论(0) 推荐(0)