摘要: 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 阅读(244) 评论(0) 推荐(0) 编辑