SHENAL
SHENAL
全部文章
BLOG
Test(1)
归档
标签
去牛客网
登录
/
注册
SHENAL的博客
全部文章
/ BLOG
(共6篇)
atoi等各种小函数的用法需要学习,及时更新在这个贴子里
1:atoi string.c_str()函数的基本使用 string str = "10"; //string转数字 int res = atoi(str.c_str()); 2: 链表快速排序和插入排序问题 &nbs...
C++
leetcode
2020-12-14
0
593
20-1211leetcode 156-200各种题目解法
有不少不会的,就参考题目答案看了下断点调试了下 主要是能看下日期,大概知道自己那天写了那些,那些天没写。 #include <iostream> #include <time.h> #include <vector>...
C++
leetcode
2020-12-11
1
601
leetcode SQL题目好好写一下
leetcode 184 https://leetcode-cn.com/problems/department-highest-salary/submissions/ 部门工资最高的 # Write your MySQL quer...
leetcode
sql
2020-12-03
0
657
二叉树层序遍历 之字形遍历问题
参考链接: https://zhuanlan.zhihu.com/p/77977139 简单写一下初级的层序遍历和进阶版层序遍历 void rightSideView(TreeNode* root)&...
C++
leetcode
2020-11-17
0
591
感觉这两天写的还行 leetcode16-28加上二叉树根节点到叶子节点的组合(老经典题目了)
//leetcode 28 KMP这个有少部分用例有问题 正在排查 别的都可以 #include <algorithm> #include <iostream> #include <time.h> #include <...
C++
leetcode
2020-07-15
0
579
根据前序遍历和中序遍历重建二叉树
这个题目是比较有名的一道题,选择题也经常遇到,可以利用递归的方式来解决。 参考原的bog地址为https://blog.csdn.net/weixin_41747893/article/details/104808459 /* ...
C++
二叉树
leetcode
2020-05-23
0
677