LeetCode
:monkey:LeetCode、剑指Offer刷题笔记(C/C++、Python3实现)
Install / Use
/learn @Jack-Cherish/LeetCodeREADME
LeetCode
原创文章每周最少两篇,后续最新文章会在【公众号】首发,视频【B站】首发,大家可以加我【微信】进交流群,技术交流或提意见都可以,欢迎Star!
<p align="center"> <a href="https://cuijiahua.com/wp-content/uploads/2020/05/gzh-w.jpg" target="_blank"><img src="https://img.shields.io/badge/weChat-微信群-blue.svg" alt="微信群"></a> <a href="https://cuijiahua.com/wp-content/uploads/2020/05/gzh-w.jpg" target="_blank"><img src="https://img.shields.io/badge/%E5%85%AC%E4%BC%97%E5%8F%B7-Jack%20Cui-lightgrey.svg" alt="公众号"></a> <a href="https://space.bilibili.com/331507846"><img src="https://img.shields.io/badge/bilibili-哔哩哔哩-critical" alt="B站"></a> <a href="https://www.zhihu.com/people/Jack--Cui" target="_blank"><img src="https://img.shields.io/badge/zhihu-知乎-informational" alt="知乎"></a> <a href="https://blog.csdn.net/c406495762" target="_blank"><img src="https://img.shields.io/badge/csdn-CSDN-red.svg" alt="CSDN"></a> <a href="https://www.toutiao.com/c/user/token/MS4wLjABAAAA5gJtmezUJ6vli2hZvnN13iLnzKLpuF8gGHeS0iVlmNs/" target="_blank"><img src="https://img.shields.io/badge/toutiao-%E5%A4%B4%E6%9D%A1-important.svg" alt="头条"></a> <a href="https://juejin.im/user/5ea2ca74e51d4546b50d5f9f" target="_blank"><img src="https://img.shields.io/badge/juejin-掘金-blue.svg" alt="掘金"></a> </p>帮助文档
帮助文档存放在Help文件夹下。
| 文件名 | 文件描述 | 链接 | | :---------: | :----------: | :------------------------------: | |complexitypython.txt|Python的一些常规操作的复杂度统计|URL|
题目清单
题目清单根据题目类型、难度进行排序,符号*代表与上下表格合并。
Array(数组)
| ID | Difficulty | Title | Python | C++ | Blog | | ---- | :--------: | :--------------------------------------: | :--------------------------------------: | :--------------------------------------: | :--------------------------------------: | | 1 | Easy | Two Sum | Python | no | 思路讲解 | | 11 | Medium | Container With Most Water | Python | C++ | 思路讲解 |
Linked List(链表)
| ID | Difficulty | Title | Python | C++ | Blog | | ---- | :--------: | :--------------------------------------: | :--------------------------------------: | :--------------------------------------: | :--------------------------------------: | | 21 | Easy | Merge Two Sorted Lists | Python | C++ | 博客思路讲解 | | 83 | * | Remove Duplicates from Sorted List | Python | C++ | 博客思路讲解 | | 141 | * | Linked List Cycle | Python | C++ | 博客思路讲解 | | 160 | * | Intersection of Two Linked Lists | Python | C++ | 博客思路讲解 | | 203 | * | Remove Linked List Elements | no | C++ | no | | 206 | * | Reverse Linked List | Python | C-迭代 C-递归| 博客思路讲解 | | 234 | * | Palindrome Linked List | Python | C++ | 博客思路讲解 | | 237 | Easy | Delete Node in a Linked List | Python | C | no | | 2 | Medium | Add Two Numbers | Python | C++ | 思路讲解 | | 61 | Medium | Rotate | Python | C++ | 博客思路讲解 |
Stack(栈)
| ID | Difficulty | Title | Python | C++ | Blog | | ---- | :--------: | :--------------------------------------: | :--------------------------------------: | :--------------------------------------: | :--------------------------------------: | | 20 | Easy | Valid Parentheses | no | C++ | 博客思路讲解 | | 155 | * | Min Stack | no | C++ | 博客思路讲解 | | 255 | * | Implement Stack using Queues | no | C++ | 博客思路讲解 | | 232 | * | Implement Queue using Stacks | no | C++ | 博客思路讲解 | | 496 | Easy | Next Greater Element I | no | C++ | 博客思路讲解 | | 150 | Medium | Evaluate Reverse Polish Notation | no | C++ | 博客思路讲解 |
String(字符串)
| ID | Difficulty | Title | Python | C++ | Blog | | ---- | :--------: | :--------------------------------
