---------------------- STL vector ---------------------- Enter numbers to store in STL containers (enter a letter to stop) There are 8 integers in the vector 9 7 5 5 6 7 8 9 ---------------------- STL array ---------------------- There are 11 elements in the array 1 32706 -520093696 9 7 5 5 6 7 8 9 ---------------------- STL list ---------------------- There are 8 integers in the list 9 7 5 5 6 7 8 9 ---------------------- STL forward_list ---------------------- There are 8 integers in the forward_list 9 7 5 5 6 7 8 9 ---------------------- STL deque ---------------------- There are 8 integers in the deque 9 7 5 5 6 7 8 9 ---------------------- STL stack ---------------------- There are 8 integers in the stack 9 7 5 5 6 7 8 9 ---------------------- STL queue ---------------------- There are 8 integers in the queue 9 7 5 5 6 7 8 9 ---------------------- STL priority_queue ---------------------- There are 8 integers in the priority_queue Can the number of elements and the contents be printed out in the order that they were entered for associative containers? Why? ---------------------- Printing out the contents in the ordered entered using iterators ---------------------- ---------------------- STL vector ---------------------- 9 8 7 6 5 5 7 9 ---------------------- STL array ---------------------- 9 8 7 6 5 5 7 9 -520093696 32706 1 ---------------------- STL list ---------------------- 9 8 7 6 5 5 7 9 ---------------------- STL forward_list ---------------------- 9 8 7 6 5 5 7 9 ---------------------- STL deque ---------------------- 9 8 7 6 5 5 7 9 ---------------------- STL stack ---------------------- ---------------------- STL queue ---------------------- ---------------------- STL priority_queue ---------------------- ---------------------- Printing out the unique contents of the vector (using algorithms) ---------------------- There are a total of 5 unique integers: 5 6 7 8 9