摘要: #include <iostream> using namespace std; void ReplaceBlank(char str[], int length) { if(str == NULL || length<=0) return; int originalLength = 0; int 阅读全文
posted @ 2016-03-29 23:36 geekvc 阅读(104) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; bool Find(int* matrix, int rows, int columns, int numbers) { bool found = false; if(matrix != NULL && rows > 阅读全文
posted @ 2016-03-29 00:16 geekvc 阅读(115) 评论(0) 推荐(0)