coder6458
coder6458
全部文章
分类
归档
标签
去牛客网
登录
/
注册
coder6458的博客
全部文章
(共6篇)
题解 | #找到搜索二叉树中两个错误的节点#
class Solution { public: /** * * @param root TreeNode类 the root * @ret...
2022-06-30
0
418
题解 | #验证回文字符串(二)#
bool palindrome(string str) { // write code here int i,j,sum=0,mid; ...
2022-06-30
1
365
题解 | #链表中环的入口结点#
class Solution { public: ListNode* EntryNodeOfLoop(ListNode* pHead) { map<ListNode*,int>mp; &nbs...
2022-06-27
0
239
题解 | #第一个只出现一次的字符#
class Solution { public: int FirstNotRepeatingChar(string str) { map<char,int>mp; ...
2022-06-24
0
252
题解 | #判断字符是否唯一#
bool isUnique(string str) { // write code here map<char,int>a; &nbs...
2022-06-23
0
326
题解 | #最大差值#
int getDis(vector<int>& A, int n) { // write code here int ans=0; &nbs...
2022-06-23
0
250