你敲代码的样子好像蔡徐坤
你敲代码的样子好像蔡徐坤
全部文章
题解
归档
标签
去牛客网
登录
/
注册
你敲代码的样子好像蔡徐坤的博客
全部文章
/ 题解
(共63篇)
题解 | #在字符串中找出连续最长的数字串#
#include<bits/stdc++.h> using namespace std; int main() { string str; //存放输入的字符串 while(getline(cin, str)) { //获取输入的一行字符串 v...
C++
2021-10-04
10
954
题解 | #合法IP#
#include<bits/stdc++.h> using namespace std; int stringtoint(string str) { //自定义将string转化为int的函数 return stoi(str.c_str()); } bool judge(i...
C++
2021-10-04
1
520
题解 | #密码强度等级#
#include<bits/stdc++.h> using namespace std; bool hasletter(char ch) { //自定义判断是否为字母的函数 return isalpha(ch); } bool hasupper(char ch) { ...
C++
2021-10-04
4
706
题解 | #求最大连续bit数#
#include<bits/stdc++.h> using namespace std; int main() { int num; //存放输入的整数 while(cin>>num) { //输入一个整数 bitset<si...
C++
2021-10-03
1
530
题解 | #最长回文子串#
#include<bits/stdc++.h> using namespace std; int getLen(string str, int low, int high) { //中心扩展法 while(low>=0 && high<str.l...
C++
2021-10-03
25
1130
题解 | #统计大写字母个数#
#include<bits/stdc++.h> using namespace std; int main() { string str; //存放输入的字符串 while(getline(cin, str)) { //获取输入的一行字符串 i...
C++
2021-10-03
3
500
题解 | #二维数组操作#
#include<bits/stdc++.h> using namespace std; int main() { int m,n; //数据表的行数和列数 while(cin>>m>>n) { //输入数据表的行数和列数 ...
C++
2021-10-03
3
1114
题解 | #字符串字符匹配#
#include<bits/stdc++.h> using namespace std; int main() { string sstr,lstr; //sstr为短字符串,lstr为长字符串 while(cin>>sstr>>lstr) ...
C++
2021-10-03
5
502
题解 | #整型数组合并#
#include<bits/stdc++.h> using namespace std; int main() { int n1; //第一个数组的长度 while(cin>>n1) { //输入第一个数组的长度 vector<...
C++
2021-10-03
2
666
题解 | #尼科彻斯定理#
#include<bits/stdc++.h> using namespace std; int main() { int num; //num为输入的正整数 while(cin>>num) { vector<int> vec...
C++
2021-10-03
1
455
首页
上一页
1
2
3
4
5
6
7
下一页
末页