All Projects → Bhupesh-V → 30 Seconds Of Cpp

Bhupesh-V / 30 Seconds Of Cpp

Licence: mit
30 Seconds of C++ (STL in C++). Read More about 30C++ here 👉

Programming Languages

cpp11
221 projects
cpp17
186 projects
cpp14
131 projects

Projects that are alternatives of or similar to 30 Seconds Of Cpp

Gostl
Data structure and algorithm library for go, designed to provide functions similar to C++ STL
Stars: ✭ 254 (-68.83%)
Mutual labels:  vector, stl, queue
Sc
Common libraries and data structures for C.
Stars: ✭ 161 (-80.25%)
Mutual labels:  algorithms, vector, queue
Algodeck
An Open-Source Collection of 200+ Algorithmic Flash Cards to Help you Preparing your Algorithm & Data Structure Interview 💯
Stars: ✭ 4,441 (+444.91%)
Mutual labels:  algorithms, queue
Icons
Named, vector icons for elementary OS
Stars: ✭ 443 (-45.64%)
Mutual labels:  hacktoberfest, vector
Neoalgo
Bringing all Data Structures and Algorithms under one Roof ⚡
Stars: ✭ 440 (-46.01%)
Mutual labels:  hacktoberfest, algorithms
Competitive coding
This repository contains some useful codes, techniques, algorithms and problem solutions helpful in Competitive Coding.
Stars: ✭ 393 (-51.78%)
Mutual labels:  hacktoberfest, algorithms
Algorithms
Collection of algorithms in multiple programming languages.
Stars: ✭ 395 (-51.53%)
Mutual labels:  hacktoberfest, algorithms
Ruby
All algorithms implemented in Ruby
Stars: ✭ 454 (-44.29%)
Mutual labels:  hacktoberfest, algorithms
Javascript Patterns
A collection of javascript algorithms, patterns, and techniques
Stars: ✭ 273 (-66.5%)
Mutual labels:  hacktoberfest, algorithms
Data Structures Using Python
This is my repository for Data Structures using Python
Stars: ✭ 546 (-33.01%)
Mutual labels:  hacktoberfest, algorithms
Cdsa
A library of generic intrusive data structures and algorithms in ANSI C
Stars: ✭ 549 (-32.64%)
Mutual labels:  algorithms, queue
C
Implementation of All ▲lgorithms in C Programming Language
Stars: ✭ 559 (-31.41%)
Mutual labels:  hacktoberfest, algorithms
Mlib
Library of generic and type safe containers in pure C language (C99 or C11) for a wide collection of container (comparable to the C++ STL).
Stars: ✭ 321 (-60.61%)
Mutual labels:  algorithms, queue
Grass
GRASS GIS - free and open source Geographic Information System (GIS)
Stars: ✭ 281 (-65.52%)
Mutual labels:  hacktoberfest, vector
Datastructure
常用数据结构及其算法的Java实现,包括但不仅限于链表、栈,队列,树,堆,图等经典数据结构及其他经典基础算法(如排序等)...
Stars: ✭ 419 (-48.59%)
Mutual labels:  algorithms, queue
Dart
Stars: ✭ 278 (-65.89%)
Mutual labels:  hacktoberfest, algorithms
Coding Interview Gym
leetcode.com , algoexpert.io solutions in python and swift
Stars: ✭ 451 (-44.66%)
Mutual labels:  algorithms, queue
Algorithms
A repository of different Algorithms and Data Structures implemented in many programming languages.
Stars: ✭ 578 (-29.08%)
Mutual labels:  hacktoberfest, algorithms
Openms
The codebase of the OpenMS project
Stars: ✭ 270 (-66.87%)
Mutual labels:  hacktoberfest, algorithms
Php
All Algorithms implemented in Php
Stars: ✭ 272 (-66.63%)
Mutual labels:  hacktoberfest, algorithms

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 GitHub contributors


Header Files


Algorithm

View contents
  1. accumulate
  2. adjacent_difference
  3. adjacent_find
  4. all_of
  5. any_of
  6. binary_search
  7. clamp
  8. copy
  9. copy_backward
  10. copy_if
  11. copy_n
  12. count
  13. count_if
  14. equal
  15. equal_range
  16. fill
  17. fill_n
  18. find
  19. find_first_of
  20. find_if
  21. find_if_not
  22. for_each
  23. for_each_n
  24. generate
  25. includes
  26. iota
  27. is_heap
  28. is_permutation
  29. is_sorted
  30. iter_swap
  31. lexicographical_compare
  32. linear_search
  33. lower_bound
  34. make_heap
  35. max
  36. max_element
  37. merge
  38. min
  39. min_element
  40. minimax_element
  41. minmax
  42. minmax_element
  43. mismatch
  44. move
  45. next_permutation
  46. none_of
  47. nth_element
  48. partition
  49. pop_heap
  50. prev_permutation
  51. push_heap
  52. random_shuffle
  53. remove
  54. remove_copy
  55. remove_copy_if
  56. remove_if
  57. replace
  58. replace_copy
  59. replace_copy_if
  60. replace_if
  61. reverse
  62. reverse_copy
  63. rotate
  64. search
  65. search_n
  66. set_difference
  67. set_intersection
  68. set_union
  69. shuffle
  70. sort
  71. stable_sort
  72. swap
  73. transform
  74. transform_reduce
  75. unique
  76. upper_bound

List

View contents
  1. assign
  2. back
  3. begin
  4. cbegin
  5. cend
  6. clear
  7. crbegin
  8. crend
  9. emplace
  10. emplace_back
  11. empty
  12. end
  13. erase
  14. front
  15. insert
  16. max_size
  17. merge
  18. pop_front
  19. rbegin
  20. remove
  21. rend
  22. resize
  23. reverse
  24. size
  25. sort
  26. splice
  27. swap
  28. unique

Map

View contents
  1. begin
  2. cbegin
  3. cend
  4. clear
  5. contains
  6. count
  7. crbegin
  8. crend
  9. emplace
  10. emplace_hint
  11. empty
  12. end
  13. erase
  14. find
  15. insert
  16. lower_bound
  17. max_size
  18. rbegin
  19. rend
  20. size
  21. swap
  22. upper_bound

Queue

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

Set

View contents
  1. begin
  2. cbegin
  3. cend
  4. clear
  5. contains
  6. count
  7. emplace
  8. emplace_hint
  9. empty
  10. end
  11. equal_range
  12. erase
  13. find
  14. insert
  15. lower_bound
  16. max_size
  17. rbegin
  18. rend
  19. size
  20. swap
  21. upper_bound

Stack

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

Unordered_map

View contents
  1. count
  2. erase
  3. find
  4. insert
  5. size

Vector

View contents
  1. Vector
  2. assign
  3. at
  4. back
  5. begin
  6. capacity
  7. cbegin
  8. cend
  9. clear
  10. crbegin
  11. data
  12. emplace
  13. emplace_back
  14. empty
  15. end
  16. erase
  17. front
  18. get_allocator
  19. insert
  20. max_size
  21. pop_back
  22. push_back
  23. rbegin
  24. rend
  25. reserve
  26. resize
  27. shrink_to_fit
  28. size
  29. sort
  30. swap

🗣 Community

Join other C++ enthusiasts on

🌐 30 Seconds of Knowledge

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

Author

👤 Bhupesh Varshney

📝 License

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

👋 Contributing

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

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