Lecture 01

Lecture 02

详情点击查看

string

1.string函数

1
2
3
4
5
6
s.append(str);	//在string的末尾加上str
s.find(str); //返回str在string中出现的起始位置
//如果没找到return string::npos
s.erase(index, length); //删除
s.insert(index, str) //插入
s.substr(start, length) //返回一个字串

2.output diamond name diamond

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
a
ad
ado
adom
adoma
adomai
adomais
domais
omais
mais
ais
is
s
*/
#include <iostream>

using namespace std;

void nameDiamond(string str){

for(int i = 0; i < str.length(); ++i){
cout << str.substr(0, i + 1) << endl;
}
//method 1: use s.replace
for(int i = 0; i < str.size(); ++i){
str.replace(i, 1, " ");
cout << str << endl;
}
//method 2: use loop output space
for(int i = 0; i < str.length(); ++i){
for(int j = 0; j <= i; ++j){
cout << " ";
}
cout << str.substr(i + 1) << endl;
}
}

int main(){
string str("adomais");
nameDiamond(str);
return 0;
}

Lecture 03

详情点击查看