Skip to content

LeetCode Solutions Implemented in C++ and Notes on Algorithms and Data Structures

License

Notifications You must be signed in to change notification settings

SilenceOverflow/LeetCode_Solutions_in_CPP

Repository files navigation

LeetCode Solutions - Implemented in Language

Current Updating

If you think this repo is useful, please watch, star or fork it!

About LeetCode

LeetCode Online Judge is a platform for preparing technical coding interviews and assessing your knowledge of data structures and algorithms. Here is the problem list - LeetCode.

One problem each day. / 日拱一卒 (in Chinese)

Tags

Tags are arranged in alphabetical order, while in each category, orders are arranged in numerical order.

Array

Order Title Analysis Solution Time Space Difficulty Runtime Beats
078 Subsets Markdown C++ O(n * 2^n) O(1) Medium 6 ms 12.97%
621 Task Scheduler Markdown C++ O(n) O(26)/O(1) Medium 46 ms 95.31%

Backtracking

Order Title Analysis Solution Time Space Difficulty Runtime Beats
078 Subsets Markdown C++ O(n * 2^n) O(1) Medium 6 ms 12.97%

Bit Manipulation

Order Title Analysis Solution Time Space Difficulty Runtime Beats
078 Subsets Markdown C++ O(n * 2^n) O(1) Medium 6 ms 12.97%

Greedy

Order Title Analysis Solution Time Space Difficulty Runtime Beats
621 Task Scheduler Markdown C++ O(n) O(26)/O(1) Medium 46 ms 95.31%

Queue

Order Title Analysis Solution Time Space Difficulty Runtime Beats
621 Task Scheduler Markdown C++ O(n) O(26)/O(1) Medium 46 ms 95.31%

To Do

  • add corresponding .cpp files
  • add links to each problem page

License

MIT

About

LeetCode Solutions Implemented in C++ and Notes on Algorithms and Data Structures

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages