cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
C++ STL...what are these containers?
C++ STL...what are these containers?
Mar 13, 2014 at 11:32am UTC
venkatacplpl
(113)
Hi All,
I have introductory knowledge in STL and I am aware of stack ,quee,deck,set,map,vector,list...etc.
When I was going through one book I have come across below.
1
2
3
4
ArrayStack ArrayDeque DualArrayDeque RootishArrayStack
Are they also some type of STL containers,if yes then how they will differ from their counterparts?
Thanks in advance
Mar 13, 2014 at 12:08pm UTC
MiiNiPaa
(8886)
It is another bunch of data structures. They lack generality and are effective only in special cases, so this is probably why they were not included in standard library.
You can easily google information about each of it in Google.
Topic archived. No new replies allowed.