- 所有的题目利用最基本的C语言知识就可以解决,一些要用到结构体,涉及到的数据结构最多到链表,最常用的函数就是strcmp,strcpy,qsort,abs,fabs等
- 大数组最好设置为全局,因为main函数在栈空间内,而栈的大小只有几十KB,数组太大会出现栈溢出,因此大数组设置为全局,全局变量占用堆空间,堆空间按需分配,可大可小
- 对于错误,末尾的换行不影响格式,
? ? ? ?段错误一般是设置的数组小于题目给定的要求, ? ? ? ?答案错误一般就是代码逻辑有错误, ? ? ? ?运行超时说明题目不能用暴力破解,或者i--写成i++之类的循环体里的错误 - 对于测试用例,最好自己带到DEV C++或者其他编译器上面测试一下,一般能发现很多错误,方便改正
1、sort()?排序函数
bool cmp(struct node a,struct node b) {
if ((a.de + a.cai) != (b.de + b.cai))
return (a.de + a.cai) > (b.de + b.cai);
else if (a.de != b.de)
return a.de > b.de;
else
return a.num < b.num;
}
struct node
{
int num, de, cai;
}v[4];
sort(v[i].begin(), v[i].end(), cmp);
2、substr()?获取子串
string s = "123456";
cout << s.substr(2, 4);
3、reverse()?倒置函数
char res[10] = "abcdefghi";
reverse(begin(res), begin(res) + 4);
cout << res;
4、vector?常用操作
vector<int> v1(n,1);//初始化一个大小为n,值全为1的数组
v1.push_back(2);//在vector末尾插入元素2
v1.pop_back();//删除vector末尾元素
v1.insert(v1.begin(),3);//在v1第一个位置前插入3
v1.insert(v1.begin()+1,4);//在v1第二个位置前插入4
v1.insert(v1.begin(),5,6);//在v1第一个位置前连续插入5个6
v1.erase(v1.begin());//删除第一个元素
v1.erase(v1.begin()+1);//删除第二个元素
v1.erase(v1.begin(),v1.begin()+3);//删除前三个元素
5、itoa()?&?atoi()?&?stoi()转换
int i = 579;
char s[10];
itoa(i, s, 8); //第三个参数为转换的进制数
cout << s;
char s[4] = "107";
int num = atoi(s);
cout << num;
char s[4] = "107";
int num = stoi(s);
cout << num;
6、isdigit()?& isalpha() & isalnum() & isupper() & islower() 判断字符是否是数字字母
char a = '7', b = 'C';
cout << isdigit(a) << " " << isdigit(b) << "\n"; //判断是否是数字
cout << isalpha(a) << " " << isalpha(b) << "\n"; //判断是否是字母
cout << isalnum(a) << " " << isalnum(b) << "\n"; //判断是否是数字或字母
cout << isupper(a) << " " << isupper(b) << "\n"; //判断是否是大写字母
cout << islower(a) << " " << islower(b) << "\n"; //判断是否是小写字母
- 输出结果:
4 0
0 1
4 1
0 1
0 0
7、round() 四舍五入
#define CLK_TCK 100
double t1 = 100, t2 = 149, t3 = 150;
cout << round((t2 - t1) / CLK_TCK) << " " << round((t3 - t1) / CLK_TCK);
8、toupper() & tolower() 转换大小写
char a = 'a', b = 'B';
cout << toupper(a) << " " << tolower(b);
9、string::npos?用法
string s = "abcdefg";
int idx = s.find('.'); //作为return value,表示没有匹配项
if (idx == string::npos)
cout << "This string does not contain any period!" << endl;
idx = s.find('c');
s.replace(idx + 1, string::npos, "x"); string::npos作为长度参数,表示直到字符串结束
cout << s;
10、upper_bound() & lower_bound() 寻找上界和下界
注意:这里返回的是地址,通过减去数组名获得下标。
upper_bound()?寻找小于指定值的界限(找到第一个大于3的位置),lower_bound()?寻找大于等于指定值的界限(找到第一个大于等于3的位置)
vector<int> nums = { 1, 2, 3, 3, 4, 4, 5 };
int index = upper_bound(nums.begin(), nums.end(), 3) - nums.begin();
cout << index << endl; // >: 4
index = lower_bound(nums.begin(), nums.end(), 3) - nums.begin();
cout << index << endl; // >: 2
11、 map用法
- map的遍历
map<char, int> mp;
char c;
while ((c = cin.get()) != '\n')
if(isalpha(c))
mp[c]++;
for (map<char, int>::iterator it = mp.begin(); it != mp.end(); it++) {
printf("%c %d ", it->first, it->second);
} 输入: This is a simple TEST. 输出: E 1 S 1 T 3 a 1 e 1 h 1 i 3 l 1 m 1 p 1 s 3 - map常用操作
begin() 返回指向 map 头部的迭代器
clear() 删除所有元素
count() 返回指定元素出现的次数
empty() 如果 map 为空则返回 true
end() 返回指向 map 末尾的迭代器
erase() 删除一个元素
find() 查找一个元素
insert() 插入元素
key_comp() 返回比较元素 key 的函数
lower_bound() 返回键值>=给定元素的第一个位置
max_size() 返回可以容纳的最大元素个数
rbegin() 返回一个指向 map 尾部的逆向迭代器
rend() 返回一个指向 map 头部的逆向迭代器
size() 返回 map 中元素的个数
swap() 交换两个 map
upper_bound() 返回键值>给定元素的第一个位置
value_comp() 返回比较元素 value 的函数
12、sscanf() & sprintf() 用法
- sscanf() – 从一个字符串中读进与指定格式相符的数据
- sprintf() – 字符串格式化命令,主要功能是把格式化的数据写入某个字符串中?
scanf("%s", str1);
sscanf(str1, "%lf", &temp); //在str1中读取一个浮点数给temp
sprintf(str2, "%.2lf", temp); //把temp以保留两位小数的字符串形式给str2
?输入:
aaa
2.3.4
1.23ab2.3
输出:
aaa 0 0.00
2.3.4 2.3 2.30
1.23 1.23
|