res
-
嵌套列表转化为二维数组
使用流的方式可以将嵌套的列表转化为二维数组。 List<List<Integer>> res = new ArrayList<>(); for …
-
剑指 Offer 05. 替换空格
思路:遍历查找空格进行替换 Python: class Solution: def replaceSpace(self, s: str) -> str: res=[] for…
-
剑指 Offer 06. 从尾到头打印链表
思路:遍历链表,通过数组来存储读取到的value,最终逆序输出 Python: # Definition for singly-linked list. # class ListN…
-
pat甲级打卡-1001 A+B Format
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>&g…
-
算法-16单调栈结构
单调栈(monotone-stack)是指栈内元素(栈底到栈顶)都是(严格)单调递增或者单调递减的。 如果有新的元素入栈,栈调整过程中 会将所有破坏单调性的栈顶元素出栈,并且出栈的…
-
python 练习题 20. 有效的括号
地址: https://leetcode-cn.com/problems/valid-parentheses/ 1 ”’ 2 给定一个只包括 ‘(‘,’)’,'{‘,’}’,…