定义一个函数,输入两个字符串,从第一个字符串中删除在第二个中出现过的所偶字符串。例如从第一个字符串"We are students."中删除第二个字符中“auiou”中出现过的字符得到的结果是"W r stdnts"
解题思路:利用哈希查找。
#include
void deleteStr2FromStr1(char* str1, char* str2)
{
if(str1 == NUL...
分类:
其他好文 时间:
2014-09-02 09:05:24
阅读次数:
250
字符串判断str1 = str2 当两个串有相同内容、长度时为真str1 != str2 当串str1和str2不等时为真-n str1 当串的长度大于0时为真(串非空)-z str1 当串的长度为0时为真(空串)str1 当串str1...
分类:
其他好文 时间:
2014-08-31 22:46:11
阅读次数:
176
??
1. istringstream字符串流
#include
#include
#include
using
namespace
std;
struct
MyStruct
{
string
str1,
str2,
str3;
double
db;
int
n...
分类:
其他好文 时间:
2014-08-30 23:11:28
阅读次数:
478
1 private String getTotalMemory() { 2 String str1 = "/proc/meminfo";// 系统内存信息文件 3 String str2; 4 String[] arrayOfString; 5 ...
分类:
移动开发 时间:
2014-08-30 20:24:59
阅读次数:
209
示例1:NSString *str1 = @"hello world"; //在oc当中,用NSString用来表示字符串 NSLog(@"%@",str1); //%@是oc当中,对象的格式符示例2:int a = 5;NSString *str2 = [NSString stringWithF....
分类:
其他好文 时间:
2014-08-30 17:36:29
阅读次数:
180
int LCS(string str1, string str2) //返回最长公共字串长度{ //创建矩阵 int** martix; martix = new int*[str1.length()+1]; for(int i =0; imax) {...
分类:
其他好文 时间:
2014-08-30 16:24:39
阅读次数:
151
#include #include using namespace std;int main(){ const char str1[] = "abc"; const char str2[] = "abc"; const char *p1 = "abc"; const ch...
分类:
其他好文 时间:
2014-08-30 15:08:19
阅读次数:
182
mysql concat(str1,str2...)连接两个字符串,(数字也是可以的,会转成字符串)MySQL的concat函数在连接字符串的时候,只要其中一个是NULL,那么将返回NULLmysql> select concat('11','22',null);+-----------------...
分类:
数据库 时间:
2014-08-29 19:59:08
阅读次数:
229
【题意简述】:我想根据输入输出,就差不多能搞懂题意了,我就不再描述
【分析】:最不喜欢字符串的问题,唉,见代码吧,处理的方法都在代码中。注意此题一直都是相邻的两个字符串相比就对了,抓住这一点,就可以很简单的解决。
详见代码:
//196K 1000Ms
#include
#include
#include
using namespace std;
char str1[100],str2[...
分类:
其他好文 时间:
2014-08-29 11:06:07
阅读次数:
193
问题:函数名: strstr函数原型:char *strstr(const char *str1, const char *str2);语法:* strstr(str1,str2)str1: 被查找目标 string expression to search.str2: 要查找对象 The stri...
分类:
其他好文 时间:
2014-08-27 23:25:38
阅读次数:
346