摘要: 编程之美-3.5最短摘要 p229View Code 1 #include <iostream> 2 #include <cassert> 3 #include <cstring> 4 5 //编程之美-3.5最短摘要 6 bool minSumerize(const char (*wordArray)[20], int wordSize, const char (*queryArray)[20], int querySize, int& minStart, int& minEnd) 7 { 8 if (wordArray == NULL | 阅读全文
posted @ 2011-09-01 00:32 lifengzhong 阅读(187) 评论(0) 推荐(0) 编辑