Skip to content

vsaraikin/algorithms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

162 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Ultimate Handbook for Data Structures & Algorithms

  • src/ – problems, approaches, DS & A to solve
  • books/ – to reference specific things
  • companies/ – tasks given by a specific firm

Path for studying

  1. Take a particular type of problem from src/.
  2. Grind all problems from section.
  3. Optionally, use books/articles for additional info.
  4. Repeat with other types of problems.

References

Videos

Misc

Interesting ways to speed up C++

#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")

static const bool Booster = []() {
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    return true;
}();

todo: implement

https://www.youtube.com/watch?v=NiXGUuCfqoU

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors