All Projects → Jack-Cherish → Leetcode

Jack-Cherish / Leetcode

🐒LeetCode、剑指Offer刷题笔记(C/C++、Python3实现)

Programming Languages

python
139335 projects - #7 most used programming language
c
50402 projects - #5 most used programming language
python3
1442 projects

Projects that are alternatives of or similar to Leetcode

Play With Algorithm Interview
Codes of my MOOC Course <Play with Algorithm Interviews>. Updated contents and practices are also included. 我在慕课网上的课程《玩儿转算法面试》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。
Stars: ✭ 915 (-26.03%)
Mutual labels:  algorithms, leetcode
Awesome Ebooks
收录开源的经典技术书籍 PDF 文件及相关网站,持续更新中...
Stars: ✭ 51 (-95.88%)
Mutual labels:  algorithms, leetcode
Leetcode Downloader
Download your accepted LeetCode submissions
Stars: ✭ 25 (-97.98%)
Mutual labels:  algorithms, leetcode
Algorithmic Pseudocode
This repository contains the pseudocode(pdf) of various algorithms and data structures necessary for Interview Preparation and Competitive Coding
Stars: ✭ 519 (-58.04%)
Mutual labels:  algorithms, leetcode
Awesome Java Leetcode
👑 LeetCode of algorithms with java solution(updating).
Stars: ✭ 8,297 (+570.74%)
Mutual labels:  algorithms, leetcode
Hello Algorithm
🌍 针对小白的算法训练 | 包括四部分:①.算法基础 ②.力扣图解 ③.大厂面经 ④.CS_汇总 | 附:1、千本开源电子书 2、百张技术思维导图(项目花了上百小时,希望可以点 star 支持,🌹感谢~)
Stars: ✭ 29,372 (+2274.45%)
Mutual labels:  algorithms, leetcode
Algorithms And Oj
Some OJs' answers writren by Python/JS/C++/Java
Stars: ✭ 47 (-96.2%)
Mutual labels:  algorithms, leetcode
Leetcode.swift
Once upon a time there was a noob of algorithms, and he knew a little about Swift.
Stars: ✭ 351 (-71.62%)
Mutual labels:  algorithms, leetcode
Leetcode Python
Leetcode Python Solution and Explanation. Also a Guide to Prepare for Software Engineer Interview.
Stars: ✭ 1,088 (-12.05%)
Mutual labels:  algorithms, leetcode
Lc Java
Clean Leetcode solutions in Java
Stars: ✭ 54 (-95.63%)
Mutual labels:  algorithms, leetcode
Algorithms And Data Structures In Java
Algorithms and Data Structures in Java
Stars: ✭ 498 (-59.74%)
Mutual labels:  algorithms, leetcode
Leetcode
This repository contains the solutions and explanations to the algorithm problems on LeetCode. Only medium or above are included. All are written in C++/Python and implemented by myself. The problems attempted multiple times are labelled with hyperlinks.
Stars: ✭ 1,130 (-8.65%)
Mutual labels:  algorithms, leetcode
Fuck Coding Interviews
How on earth can I ever think of a solution like that in an interview?!
Stars: ✭ 464 (-62.49%)
Mutual labels:  algorithms, leetcode
Ios tips
iOS的一些示例,持续更新中:1、AVFoundation 高仿微信相机拍摄和编辑 2、AVFoundation 人脸检测、实时滤镜、音视频编解码、GPUImage框架的使用等音视频相关内容 3、OpenGLES 4、LeetCode算法练习 5、iOS Crash防护和APM监控 6、WKWebView相关的内容 等........
Stars: ✭ 896 (-27.57%)
Mutual labels:  algorithms, leetcode
Coding Interview Gym
leetcode.com , algoexpert.io solutions in python and swift
Stars: ✭ 451 (-63.54%)
Mutual labels:  algorithms, leetcode
Algorithms
Here is the my solutions for problems in {leetcode, hackerrank, geeksforgeeks}
Stars: ✭ 36 (-97.09%)
Mutual labels:  algorithms, leetcode
Leetcode Go
✅ Solutions to LeetCode by Go, 100% test coverage, runtime beats 100% / LeetCode 题解
Stars: ✭ 22,440 (+1714.07%)
Mutual labels:  algorithms, leetcode
Awesome Golang Algorithm
📝 LeetCode of algorithms with golang solution(updating).
Stars: ✭ 3,217 (+160.06%)
Mutual labels:  algorithms, leetcode
Leetcode
🕵️‍♂️ leetcode practice
Stars: ✭ 52 (-95.8%)
Mutual labels:  algorithms, leetcode
Leetcode
👏🏻 leetcode solutions for Humans™
Stars: ✭ 1,129 (-8.73%)
Mutual labels:  algorithms, leetcode

LeetCode

原创文章每周最少两篇,后续最新文章会在【公众号】首发,视频【B站】首发,大家可以加我【微信】交流群,技术交流或提意见都可以,欢迎Star

微信群 公众号 B站 知乎 CSDN 头条 掘金

帮助文档

帮助文档存放在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
13 Easy Roman to Integer Python no 思路讲解
14 * Longest Common Prefix Python no 思路讲解
28 * Implement strStr Python no 思路讲解
38 * Count and Say Python no 思路讲解
125 * Valid Palindrome Python no 思路讲解
150 * Add Binary Python C++ 博客思路讲解
344 * Reverse String Python C++ 博客思路讲解
345 * Reverse Vowels of a String Python no 博客思路讲解
383 * Ransom Note Python no 思路讲解
434 * Number of Segments in a String Python C++ 博客思路讲解
520 * Detect Capital Python C++ 博客思路讲解
521 * Longest Uncommon Subsequence I Python no no
541 * Reverse String II Python C++ 博客思路讲解
551 * Student Attendance Record I Python no no
557 * Reverse Words in a String III Python C++ 博客思路讲解
657 Easy Judge Route Circle Python no no
3 Medium Longest Substring Without Repeating Characters Python no 思路讲解
5 * Longest Palindromic Substring Python no 思路讲解
17 * Letter Combinations of a Phone Number Python no 思路讲解
22 * Generate Parentheses Python no 思路讲解
43 * Multiply Strings Python no 思路讲解
609 Medium Find Duplicate File in System Python no 思路讲解

Tree(树)

ID Difficulty Title Python C++ Blog
111 Easy Minimum Depth of Binary Tree Py-1 Py-2 C++ 博客思路讲解
112 * Path Sum Py-1 Py-2 C++ 博客思路讲解
235 * Lowest Common Ancestor of a Binary Search Tree Py-1 Py-2 C++ 博客思路讲解
501 * Find Mode in Binary Search Tree Python C++ 博客思路讲解
543 * Diameter of Binary Tree Python C++ no
606 Easy Construct String from Binary Tree Python C++ no
113 Medium Path Sum II Python no no

Hash Table(哈希表)

ID Difficulty Title Python C++ Blog
290 Easy Word Pattern.mde Python no 思路讲解

剑指Offer(已完成)

链表(8道):

二叉树(12道):

二叉搜索树(3道):

数组(11道):

字符串(8道):

栈(3道):

递归(4道):

回溯法(2道):

其他(15道):

更多精彩,敬请期待!

wechat
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].