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 |
please visit this site you'll find my question this is my homework please answer it if you can http://easyscience.org/ib/lofiversion/index.php/t36168.html
#define CUBE(x) (x*x*x) main() { int a,b=3; a=cube(b++); printf("%d %d",a,b); } What should be the value of a and b? My calc a=4 but syst a=6 how pls tell me if you know it?
what's the difference between function overloading and function overiding?
How stl is different from the c++ standard library?
Give the output of the following program main() {char *p='a'; int *i=100/*p; } what will be the value of *i= 1
how can u do connectivity in c++ language? plz send me connectivity code in c++ ?
how to making game in c++ ?
What is stl language?
Explain when u will use Observer pattern and how u will implement in c++ .
I am doing my BS.c MATHS CAN I ABLE TO JOIN IN NIIT?
tell about sorted linked list
What is the underlying datastructure of map?