what is an algorithm in terms of STL?
Answer / bayo
In STL algorithms provide a set of functions to modify,
interpret and analyze the data in container objects.
Iterators provide the connection between the
containers and the algorithms. The generic algorithms take
iterators as arguments to access data in container
objects. Since they work on iterators, they have
independence from the container type.
| Is This Answer Correct ? | 4 Yes | 0 No |
What does stl mean in slang?
Is there any error below, its a code to delete all entires from a map #include <map> #include iostream.h int main() { int i =0; map <int, char> TestMap; while(i<3) { TesMap.insert(TestMap::value_type(i,Test)); i++; } typedef map<int, char> :: iterator mapIter =TestMap.begin(); if(mapIter!=TestMap.end()) { TestMap.erase(mapItrer); ++mapIter; } return 0; }
Waht is inheritance
How can you create a bulleted list, numbered list and an outline by using bullets and numbering command. Explain with the help of example.
What is stl stand for?
Describe how to safeguard a system through acquisition of an antivirus Program and systematic backup.
What are the components of stl?
Write a program to print the swapping in two no and using three variable.
Assume I have a linked list contains all of the alphabets from "A" to "Z?" I want to find the letter "Q" in the list, how does you perform the search to find the "Q?"
wap in c++ which accept a integer array and its size as argument and replaces element having even values with its half and element having odd values with twice its value
what is template and type convertion
why does the execution of a c++ program start with main()???