All Projects → muyids → Leetcode

muyids / Leetcode

📓 算法学习笔记

Programming Languages

javascript
184084 projects - #8 most used programming language
cpp
1120 projects

Projects that are alternatives of or similar to Leetcode

Awesome Ebooks
收录开源的经典技术书籍 PDF 文件及相关网站,持续更新中...
Stars: ✭ 51 (-59.84%)
Mutual labels:  algorithms, leetcode
Awesome Java Leetcode
👑 LeetCode of algorithms with java solution(updating).
Stars: ✭ 8,297 (+6433.07%)
Mutual labels:  algorithms, leetcode
Leetcode
🕵️‍♂️ leetcode practice
Stars: ✭ 52 (-59.06%)
Mutual labels:  algorithms, leetcode
Leetcode Downloader
Download your accepted LeetCode submissions
Stars: ✭ 25 (-80.31%)
Mutual labels:  algorithms, leetcode
Hands On Algorithmic Problem Solving
A middle-to-high level algorithm book designed with coding interview at heart!
Stars: ✭ 1,227 (+866.14%)
Mutual labels:  algorithms, leetcode
Algorithms
Here is the my solutions for problems in {leetcode, hackerrank, geeksforgeeks}
Stars: ✭ 36 (-71.65%)
Mutual labels:  algorithms, leetcode
Leetcode Python
Leetcode Python Solution and Explanation. Also a Guide to Prepare for Software Engineer Interview.
Stars: ✭ 1,088 (+756.69%)
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 (+308.66%)
Mutual labels:  algorithms, leetcode
Competitiveprogrammingquestionbank
This repository contains all the popular competitive programming and DSA questions with solutions.
Stars: ✭ 122 (-3.94%)
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 (+789.76%)
Mutual labels:  algorithms, leetcode
Play With Algorithm Interview
Codes of my MOOC Course <Play with Algorithm Interviews>. Updated contents and practices are also included. 我在慕课网上的课程《玩儿转算法面试》示例代码。课程的更多更新内容及辅助练习也将逐步添加进这个代码仓。
Stars: ✭ 915 (+620.47%)
Mutual labels:  algorithms, leetcode
Mygo
Leetcode、剑指offer(第二版)的Go实现😀 Come join us!🤝❤️👻
Stars: ✭ 109 (-14.17%)
Mutual labels:  algorithms, leetcode
Ios tips
iOS的一些示例,持续更新中:1、AVFoundation 高仿微信相机拍摄和编辑 2、AVFoundation 人脸检测、实时滤镜、音视频编解码、GPUImage框架的使用等音视频相关内容 3、OpenGLES 4、LeetCode算法练习 5、iOS Crash防护和APM监控 6、WKWebView相关的内容 等........
Stars: ✭ 896 (+605.51%)
Mutual labels:  algorithms, leetcode
Algorithms And Oj
Some OJs' answers writren by Python/JS/C++/Java
Stars: ✭ 47 (-62.99%)
Mutual labels:  algorithms, leetcode
Hello Algorithm
🌍 针对小白的算法训练 | 包括四部分:①.算法基础 ②.力扣图解 ③.大厂面经 ④.CS_汇总 | 附:1、千本开源电子书 2、百张技术思维导图(项目花了上百小时,希望可以点 star 支持,🌹感谢~)
Stars: ✭ 29,372 (+23027.56%)
Mutual labels:  algorithms, leetcode
Lc Java
Clean Leetcode solutions in Java
Stars: ✭ 54 (-57.48%)
Mutual labels:  algorithms, leetcode
Fuck Coding Interviews
How on earth can I ever think of a solution like that in an interview?!
Stars: ✭ 464 (+265.35%)
Mutual labels:  algorithms, leetcode
Algorithms And Data Structures In Java
Algorithms and Data Structures in Java
Stars: ✭ 498 (+292.13%)
Mutual labels:  algorithms, leetcode
Leetcode
👏🏻 leetcode solutions for Humans™
Stars: ✭ 1,129 (+788.98%)
Mutual labels:  algorithms, leetcode
Leetcode
🐒LeetCode、剑指Offer刷题笔记(C/C++、Python3实现)
Stars: ✭ 1,237 (+874.02%)
Mutual labels:  algorithms, leetcode

📓 LeetCode笔记

本笔记适用于目标在于掌握基础算法的工程师

There are problems in leetcode, most of code are C++ and Javascript, and I will keep
updating every day, just for learning how to improve coding skill. And I will also
collect some good articles about data structure and algorithm.

简介

力扣常见考察的知识点大概有十几种,包括:二分,滑动窗口,双指针,单调栈(单调队列),链表,二叉树,字符串处理,dfs + 回溯,并查集,动态规划,贪心,位运算,数论(质数、约数、欧拉函数、欧几里得算法、中国剩余定理、简单博弈论等),图论(dfs、bfs、flood fill、拓扑排序、二分染色、最短路、最小生成树等)

系统性地学习算法会有事半功倍的效果,于是我归纳了一些基础算法的知识点,并对力扣上的相关题目进行了整理

本项目的目的,是希望帮助大家了解一些基础算法,并掌握其代码模板,快速解决掉一些基本的算法问题。

读者可以根据自己的需要阅读,希望能够对您有所帮助,有何不足之处请多指正!

我的力扣主页

访问我的电子书《从零开始学算法》,获取更好的阅读体验

♨️ 导图

原图链接

simple-algorithm

🙉 说明

  • 本项目题目来源:力扣(LeetCode)
  • 题目著作权归力扣(LeetCode) 所有。商业转载请联系官方授权,非商业转载请注明出处。
  • 题解语言不限,专注于算法实现

🌲目录

.
├── algorithms        -- 题目解析列表
│   ├── 1-100         -- 按题号分类
│   ├── ...
├── playground        -- 算法模板
├── script            -- 自动化脚本
├── workspace         -- 工作目录
├── README.md         -- README文件
├── TOC-By-ID.md      -- 按题号查看目录
└── TOC-By-Tag.md     -- 按分类查看目录

 

🔐 Problems & Solutions

完成进度(834🔑/ 1770🔒)

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].