猪猪向前冲
猪猪向前冲
全部文章
未归档
题解(70)
归档
标签
去牛客网
登录
/
注册
猪猪向前冲的博客
全部文章
/ 未归档
(共4篇)
二叉树测试用例-前序遍历
">#include<vector> #include<stack> using namespace std; struct TreeNode { int val; TreeNode* left; TreeNode* right; TreeNode(int x) ...
C++14
2022-04-17
0
444
链表测试用例-翻转链表
">#include<vector> using namespace std; struct ListNode{ int val; ListNode* next; ListNode(int x) : val(x), next(NULL){} }; ListNode* reve...
C++14
2022-04-17
0
312
LeetCode439 三元表达式解析器
class Solution { public: string parseTernary(string expression) {  ...
2022-03-10
0
243
leetcode 77.组合
给定两个整数 n 和 k,返回范围 [1, n] 中所有可能的 k 个数的组合。 你可以按 任何顺序 返回答案。 class Solution { p...
C++
2022-03-03
0
279