whoway
whoway
全部文章
题解
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
全部文章
/ 题解
(共124篇)
难以复现的bug才是最麻烦的bug
一、0.8的代码 #include<bits/stdc++.h> using namespace std; int main() { string str; while(cin>>str) { int n; cin&...
string
bug
2020-12-11
0
776
520. 检测大写字母
记忆库函数 int islower(int ch)//如果是小写字母,返回非0的ASCII码,否则返回0int isupper(int ch)//如果是大写字母,返回非0的ASCII码,否则返回0 class Solution { public: bool detectCapitalUse(...
string
记忆
2020-12-11
0
517
1662. 检查两个字符串数组是否相等
1662. 检查两个字符串数组是否相等 string水题 一、用+ class Solution { public: bool arrayStringsAreEqual(vector<string>& word1, vector<string>& w...
string
2020-12-11
0
591
格式控制
scanf格式控制 #include<bits/stdc++.h> using namespace std; bool solve(string A, string B) { // write code here int lenA=A.size(); ...
输入输出格式记忆
2020-12-11
0
446
C++之string解法
class Solution { public: /** * 旋转字符串 * @param A string字符串 * @param B string字符串 * @return bool布尔型 */ bool solve(stri...
string
2020-12-11
1
535
纯C++解法
#include<bits/stdc++.h> using namespace std; map<char,int> mp; char solve[3]={'Z', 'O', 'J'}; int main() { string str; while( ci...
map
2020-12-11
0
466
C++之string板子题
class Substr { public: vector<bool> chkSubStr(vector<string> p, int n, string s) { // write code here vector<bool&g...
string
2020-12-11
0
513
栈相关
栈相关解法 题目意思有点没有描述清楚,但从AC情况来看,我理解正确了 1、只用是(和)括号,不需要考虑{}和[]这样的 2、出现了除了()之外的字符,就不合法 3、要满足括号匹配 下面代码,顺路考虑了代码“健壮性” throw "invalid case"; class Parenthes...
命名规范
2020-12-11
0
534
sort的自定义“规则函数”
#include<bits/stdc++.h> using namespace std; int n; static const int maxn=1e5+5; vector<pair<int,int> > solve; //根据题目定义的规则函数 boo...
2020-12-08
0
497
next_permutaiton例题
#include<bits/stdc++.h> using namespace std; static const int maxn=1e5+5; char solve[maxn]; int main() { while( ~scanf("%s",solve) ) {...
next_permutation
2020-12-08
0
540
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页