Moody..未来可期
Moody..未来可期
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Moody..未来可期的博客
全部文章
/ 题解
(共4篇)
题解 | #多少个点位于同一直线#
/** * struct Point { * int x; * int y; * }; */ class Solution { public: /** * * @param points Point类vector * @return int整型 ...
C++
2021-10-15
0
556
题解 | #三个数的最大乘积#
class Solution { public: /** * 最大乘积 * @param A int整型一维数组 * @param ALen int A数组长度 * @return long长整型 */ //考虑三种情况 /...
C++
2021-10-14
0
365
题解 | #寻找第K大#
#include<algorithm> class Solution { public: //快速排序 int findKth(vector<int> a, int n, int K) { return quickSelect(a,0,n - ...
C++
2021-10-11
0
452
题解 | #实现二叉树先序,中序和后序遍历#
/** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ class Solution { public: /** * * @...
C++
2021-10-11
0
361