Answered by:
STL ?????

Question
-
What are STL's and how can i learn more about implementing them?Thursday, September 27, 2007 8:03 PM
Answers
-
STL stands for Standard Template Library.Thursday, September 27, 2007 8:23 PM
-
Table of Contents: the Standard Template Library
- Introduction to the STL
- How to use the documentation
- Containers
- Concepts
- General concepts
- Sequences
- Associative Containers
- Associative Container
- Simple Associative Container
- Pair Associative Container
- Sorted Associative Container
- Hashed Associative Container
- HashFunction
- Unique Associative Container
- Multiple Associative Container
- Unique Sorted Associative Container
- Multiple Sorted Associative Container
- Unique Hashed Associative Container
- Multiple Hashed Associative Container
- Container classes
- Concepts
- Iterators
- Introduction
- Concepts
- Iterator Tags
- Introduction
- iterator_traits
- iterator_category
- distance_type
- value_type
- Iterator tag classes
- Iterator base classes
- Iterator functions
- Iterator classes
- Algorithms
- Non-mutating algorithms
- Mutating algorithms
- Sorting
- Sort
- nth_element
- Binary search
- merge
- inplace_merge
- Set operations on sorted ranges
- Heap operations
- Minimum and maximum
- lexicographical_compare
- lexicographical_compare_3way
- next_permutation
- prev_permutation
- Generalized numeric algorithms
- Function Objects
- Introduction
- Concepts
- Predefined function objects
- Arithmetic operations
- Comparisons
- Logical operations
- Generalized identity operations
- subtractive_rng
- Function object adaptors
- Utilities
- Concepts
- Functions
- Classes
- Memory Allocation
- Design documents
- Categorized Index
- Full Index
Friday, September 28, 2007 2:25 AM -
Well to be precise it gives you an alternative for arrays in C/c++, and to understand it go through C++ from Tony Gaddis
And our friend has given really a great intro, better to practise as its really not that tough as it seems when you read it.
Saturday, September 29, 2007 9:33 PM
All replies
-
STL stands for Standard Template Library.Thursday, September 27, 2007 8:23 PM
-
STL, is a C++ library of container classes, algorithms, and iterators;providing many of the basic algorithms and data structures...if u r interested in learning it refer to the foillowing link....: STL ReferenceThursday, September 27, 2007 11:31 PM
-
Table of Contents: the Standard Template Library
- Introduction to the STL
- How to use the documentation
- Containers
- Concepts
- General concepts
- Sequences
- Associative Containers
- Associative Container
- Simple Associative Container
- Pair Associative Container
- Sorted Associative Container
- Hashed Associative Container
- HashFunction
- Unique Associative Container
- Multiple Associative Container
- Unique Sorted Associative Container
- Multiple Sorted Associative Container
- Unique Hashed Associative Container
- Multiple Hashed Associative Container
- Container classes
- Concepts
- Iterators
- Introduction
- Concepts
- Iterator Tags
- Introduction
- iterator_traits
- iterator_category
- distance_type
- value_type
- Iterator tag classes
- Iterator base classes
- Iterator functions
- Iterator classes
- Algorithms
- Non-mutating algorithms
- Mutating algorithms
- Sorting
- Sort
- nth_element
- Binary search
- merge
- inplace_merge
- Set operations on sorted ranges
- Heap operations
- Minimum and maximum
- lexicographical_compare
- lexicographical_compare_3way
- next_permutation
- prev_permutation
- Generalized numeric algorithms
- Function Objects
- Introduction
- Concepts
- Predefined function objects
- Arithmetic operations
- Comparisons
- Logical operations
- Generalized identity operations
- subtractive_rng
- Function object adaptors
- Utilities
- Concepts
- Functions
- Classes
- Memory Allocation
- Design documents
- Categorized Index
- Full Index
Friday, September 28, 2007 2:25 AM -
Well to be precise it gives you an alternative for arrays in C/c++, and to understand it go through C++ from Tony Gaddis
And our friend has given really a great intro, better to practise as its really not that tough as it seems when you read it.
Saturday, September 29, 2007 9:33 PM -
It has sum new class like string,vector.. unlike usual c++.
It`s help us to implement list,stack,vector and several operation on them in an easy way.
Just go for www.sgi.com
Sunday, September 30, 2007 3:37 AM