Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jubaerhossain/stl
https://github.com/jubaerhossain/stl
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jubaerhossain/stl
- Owner: JubaerHossain
- Created: 2022-09-09T05:58:19.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-05T20:04:56.000Z (about 2 years ago)
- Last Synced: 2023-03-05T09:08:36.943Z (almost 2 years ago)
- Size: 622 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#STL for c++
- [Containers](https://cplusplus.com/reference/stl)
- [Vector](https://cplusplus.com/reference/vector/vector)
- push_back()
- find() `#include`
- reverse()
- clear()
- sort() `#include`
- erase()
- assign()
- pop_back()
- insert()
- swap()
- emplace()
- emplace_back()
- vector::begin()
- vector::end()
- vector::front()
- vector::back()
- vector::data()
- vector::size()
- vector::max_size()
- vector::empty()
- vector::resize()- [List](https://cplusplus.com/reference/list/list)
- front()
- back()
- push_front()
- push_back()
- pop_front()
- pop_back()
- list::begin()
- list::end()
- list::size()
- list::empty()
- assign()
- emplace_front()
- emplace_back()
- emplace()
- insert()
- swap()
- clear()
- sort `#include `
- find() `#include `
- reverse()
- erase()
- unique()
- merge()
- splice()
- remove()
- [Map](https://cplusplus.com/reference/map/map)
- begin()
- end()
- empty()
- max_size()
- insert()
- erase()
- swap()
- clear()
- emplace()
- find() `map.find('b')`
- [Set](https://cplusplus.com/reference/set/set/)
- `set automatically ascending order and not allow duplicate`
- begin()
- end()
- empty()
- size()
- max_size()
- insert()
- erase()
- swap()
- clear()
- emplace()
- find()
- count()
- [Stack](https://cplusplus.com/reference/stack/stack/)- empty()
- push()
- pop()
- swap()
- top()
- size()- [Queue](https://cplusplus.com/reference/queue/queue/)
- empty()
- push()
- pop()
- swap()
- front()
- back()
- size()
- [Dequeue](https://cplusplus.com/reference/deque/deque/)
- push_back()
- push_front()
- pop_back()
- pop_front()
- clear()
- erase()
- assign()
- insert()
- swap()
- emplace()
- emplace_back()