leetcode被墙-leetcode:leetcode笔记

时间:2024-07-20 09:34:09
【文件属性】:

文件名称:leetcode被墙-leetcode:leetcode笔记

文件大小:23KB

文件格式:ZIP

更新时间:2024-07-20 09:34:09

系统开源

leetcode被墙 leetcode leetcode刷题笔记 知识归纳 Python字符串函数 str.index()与str.find() str.strip() Python内置函数 算法 BFS与DFS 广度优先搜索BFS(Breadth First Search) 使用队列保存未被检测的结点。结点按照宽度优先的次序被访问和进出队列。 eg: 你的眼镜掉地上,你总是先从离你最近的地方摸索,如果没有,再摸远一点的地方... 深度优先搜索DFS(Depth First Search) 使用栈保存未被检测的结点,结点按照深度优先的次序被访问并依次被压入栈中,并以相反的次序出栈进行新的检测。 eg: 走迷宫 -- 不撞南墙不回头... 注意事项 easy:21.Merge_Two_Sorted_Lists return a or b 首先我是第一次见到这种写法,查看了官方文档,引用如下: The expression x and y first evaluates x; if x is false, its value is returned; otherwise, y is ev


【文件预览】:
leetcode-master
----LICENSE(11KB)
----easy()
--------20.Valid_Parentheses.py(1KB)
--------104.Maximum_Depth_of_Binary_Tree.py(750B)
--------38.Count_and_Say.py(1KB)
--------101.Symmetric_Tree.py(2KB)
--------107.Binary_Tree_Level_Order_Traversal_II.py(1KB)
--------108.Convert_Sorted_Array_to_Binary_Search_Tree.py(1KB)
--------100.Same_Tree.py(1KB)
--------9.Palindrome_Number.py(1016B)
--------53.Maximum_Subarray.py(659B)
--------28.Implement_strStr().py(594B)
--------26.Remove_Duplicates_from_Sorted_Array.py(856B)
--------14.Longest_Common_Prefix.py(566B)
--------35.Search_Insert_Position.py(731B)
--------83.Remove_Duplicates_from_Sorted_List.py(839B)
--------67.Add_Binary.py(434B)
--------13.Roman_to_Integer.py(1KB)
--------110.Balanced_Binary_Tree.py(1KB)
--------21.Merge_Two_Sorted_Lists.py(2KB)
--------69.Sqrt(x).py(536B)
--------1.Two_Sum.py(789B)
--------7.Reverse_Integer.py(511B)
--------88.Merge_Sorted_Array.py(1KB)
--------70.Climbing_Stairs.py(793B)
--------58.Length_of_Last_Word.py(539B)
--------66.Plus_One.py(681B)
--------27.Remove_Element.py(888B)
----README.md(2KB)
----.gitignore(1KB)

网友评论