幻竹涂
幻竹涂
全部文章
C++
git操作刘(1)
Linux C语言(7)
题解(5)
归档
标签
去牛客网
登录
/
注册
幻竹涂的博客
全部文章
/ C++
(共5篇)
题解 | #求路径#
class Solution { public: /** * * @param m int整型 * @param n int整型 * @return int整型 */ int uniquePaths(int m, int n) ...
2021-07-31
0
327
题解 | #换钱的最少货币数#
class Solution { public: /** * 最少货币数 * @param arr int整型vector the array * @param aim int整型 the target * @return int整型 */ ...
2021-07-31
0
451
题解 | #跳台阶#
class Solution { public: void push(int node) { stack1.push(node); } int pop() { if (stack2.empty()) { while (...
2021-07-25
0
272
题解 | #用两个栈实现队列#
class Solution { public: void push(int node) { stack1.push(node); } int pop() { if (stack2.empty()) { while (...
2021-07-25
0
288
题解 | #排序#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ class Solut...
2021-07-25
0
385