博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2010年9月20日

摘要: // 3_2.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" char c[10][10]= { "", "", "abc", "def", "jkl", "mno", "pqrs", "tuv", "wxyz", }; int total[10] = {0,0,3,3,3,3,3,4,3,4}; int number[4] =... 阅读全文

posted @ 2010-09-20 23:21 KurtWang 阅读(1208) 评论(0) 推荐(0) 编辑

摘要: //空间换时间 bool func(char * s1, char * s2) { assert(s1); assert(s2); char * temp = new char[strlen(s1)*2 + 1]; strcpy(temp,s1); strcat(temp,s1); if(strstr(temp, s2) != NULL) return true; else ... 阅读全文

posted @ 2010-09-20 22:32 KurtWang 阅读(359) 评论(0) 推荐(0) 编辑