学会思考
刻意练习
摘要: //函数查找 template int seqSearch(const T list[], int n, const T &key) { for (int i = 0; i int binSearch(const T list[], int n, const T &key) { int low = 0; int high = n - 1; while (low... 阅读全文
posted @ 2017-03-17 21:43 Worty 阅读(235) 评论(0) 推荐(0)