法拉利201903231900848
法拉利201903231900848
全部文章
分类
学习笔记(9)
读书笔记(1)
资源(1)
题解(75)
归档
标签
去牛客网
登录
/
注册
法拉利201903231900848的博客
Talk is cheap. Show me the code.
全部文章
(共86篇)
求1+2+3+...+n
class Solution { public: int Sum_Solution(int n) { int sum=n; &n...
2019-07-30
60
3699
顺时针打印矩阵
class Solution { public: vector<int> printMatrix(vector<vector<int> > matrix) { vector<...
2019-07-27
2
965
二叉树的镜像
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; &...
2019-07-26
0
701
输入两棵二叉树A,B,判断B是不是A的子结构
/* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; &...
2019-07-26
0
915
链表合并
递归/* struct ListNode { int val; struct ListNode *next; ListNode(int x) :  ...
2019-07-26
0
676
反转链表
反转链表(递归实现)/* struct ListNode { int val; struct ListNode *next; ListNode(int x)...
2019-07-25
6
1065
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页