rjsu26 / 30-seconds-of-cpp

30 Seconds of C++ (STL in C++). Read More about 30C++ here πŸ‘‰

Home Page:https://bhupeshv.me/30-Seconds-of-C++/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

30 Seconds of C++

30 Seconds Of Standard Template Library in C++



A collection of C++ STL features (functions/libraries) which can be learned in 30 seconds or less


Codacy Badge PRs Welcome license Build Status CodeFactor Open Source Helpers


Header Files


Algorithm

View contents
  1. adjacent_find
  2. all_of
  3. any_of
  4. binary_search
  5. count
  6. count_if
  7. find
  8. find_first_of
  9. find_if
  10. find_if_not
  11. for_each
  12. for_each_n
  13. generate
  14. mismatch
  15. none_of
  16. reverse
  17. sort

List

View contents
  1. assign
  2. back
  3. begin
  4. cbegin
  5. cend
  6. clear
  7. crbegin
  8. crend
  9. empty
  10. end
  11. erase
  12. front
  13. insert
  14. merge
  15. rbegin
  16. remove
  17. rend
  18. resize
  19. size
  20. sort
  21. splice
  22. swap

Map

View contents
  1. begin
  2. cbegin
  3. cend
  4. end
  5. rbegin

Queue

View contents
  1. back
  2. emplace
  3. empty
  4. front
  5. pop
  6. push
  7. size
  8. swap

Stack

View contents
  1. emplace
  2. empty
  3. pop
  4. push
  5. size
  6. top

Vector

View contents
  1. assign
  2. at
  3. begin
  4. clear
  5. empty
  6. end
  7. erase
  8. front
  9. push_back
  10. size
  11. swap

πŸ—£οΈ Community

Join other C++ enthusiasts on

🌐 30 Seconds of Knowledge

Experience 30 Seconds of C++ as a Web Extension built by Stefan Petrovic

Contributors πŸ’œ πŸŽ‰

Name Profile
TANIYA GUPTA thetaniyagupta
Saumya Agnihotri saumyaagnihtori
shan7030 shan7030
Sonkeng Maldini sdmg15
Pranav Khurana Pranav-Khurana
Rickey Patel rickey90
Kyle Johnson kydojo
Timothy Itodo itodotimothy6
Pankaj Raghav Panky-codes

Author

πŸ‘€ Bhupesh Varshney

Special Mention

A big thanks to Shriam Kaushik for the lovely new logo ❀️

πŸ“ License

This project is licensed under the MIT License. See the LICENSE.md file for details.

πŸ‘‹ Contributing

Please read the updated CONTRIBUTING.md for the process for submitting pull requests to us.

About

30 Seconds of C++ (STL in C++). Read More about 30C++ here πŸ‘‰

https://bhupeshv.me/30-Seconds-of-C++/

License:MIT License


Languages

Language:C++ 66.0%Language:Python 27.3%Language:Makefile 6.7%