/STL-CPP

The Standard Template Library (STL)

Primary LanguageC++

STL-CPP

The Standard Template Library (STL) is a set of C++ template classes to provide common programming data structures and functions such as lists, stacks, arrays, etc..
Refer this:-http://www.cplusplus.com/reference/stl/
alt text
Priority Queue :-Priority queues are a type of container adapters, specifically designed such that the first element of the queue is the greatest of all elements in the queue and elements are in decreasing order.

Deque :- Double ended queues are sequence containers with the feature of expansion and contraction on both the ends. They are similar to vectors, but are more efficient in case of insertion and deletion of elements. Unlike vectors, contiguous storage allocation may not be guaranteed.

If you want to add some more decent properties to it.Please fork I will accept pull request ;).