递归的基本原理(非常有意思)
摘要:
#include void test(int first, int last) { std::cout<<first<<" "<<last<<std::endl; } void sort (int first, int last) { if(first<last) { int mid = (first + last)/2; sor... 阅读全文
posted @ 2016-03-01 16:58 xiatoex 阅读(286) 评论(0) 推荐(0)
浙公网安备 33010602011771号