whoway
whoway
全部文章
题解
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
全部文章
/ 题解
(共9篇)
成员函数substr题解 | #截取字符串#
#include<bits/stdc++.h> using namespace std; int main() { string str; while( cin>>str ) { int n; scanf("...
string
2021-07-21
0
459
substr+双指针+测试样例好像有误
1、转换大小写 2、用『双指针』进行获取结果 吐槽:但是,这个题目的测试样例,似乎默认是一个空格,没有考虑多个空格的情况 class Solution { public: string trans(string s, int n) { // write code here ...
string
2021-05-10
1
601
string的rfind和replace使用
来自专栏
逆向思维 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param s string字符串 * @return string字符串 ...
string
2021-03-13
9
1070
string的string::npos
来自专栏
一、出错代码和经验 class Solution { public: string defangIPaddr(string address) { int position=1; //错误 while( npos!=(position=addr...
string
2020-12-11
1
1065
难以复现的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
C++之string解法
class Solution { public: /** * 旋转字符串 * @param A string字符串 * @param B string字符串 * @return bool布尔型 */ bool solve(stri...
string
2020-12-11
1
520
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