爱编程的宽宽
爱编程的宽宽
全部文章
分类
归档
标签
去牛客网
登录
/
注册
爱编程的宽宽的博客
TA的专栏
4篇文章
0人订阅
程序员面试宝典题解
4篇文章
340人学习
全部文章
(共5篇)
题解 | #基本字符串压缩#
class Zipper { public: string zipString(string iniString) { // write code here string ret; char tmp = iniString[0]; /...
2023-04-14
0
354
题解 | #空格替换#
来自专栏
class Replacement { public: string replaceSpace(string iniString, int length) { // write code here string ret; // 创建一个接收返回值的字符串 ...
2023-04-14
0
340
题解 | #确定两串乱序同构#
来自专栏
class Same { public: bool checkSam(string stringA, string stringB) { // write code here array<int, 128> bufA{ 0 }; // 保存字...
2023-04-14
0
297
题解 | #原串翻转#
来自专栏
#include <string> class Reverse { public: string reverseString(string iniString) { // write code here string::iterator sti...
2023-04-13
0
255
题解 | #确定字符互异#
来自专栏
#include <array> #include <iostream> class Different { public: bool checkDifferent(string iniString) { // write code here ...
2023-04-13
0
302