urgent

kavi123 (6)
what are additional C++ techniques available to implement algorithms to process data types other than integers.
Felicia123 (153)
what you mean process data type?
sorting?
kavi123 (6)
yes :)
kavi123 (6)
update please
Moschops (5956)
Other than integers we have floats, chars, doubles, strings, and lots of other object types.
kavi123 (6)
yea i require algorithms which can be used to sort them
Athar (4376)
They're the same algorithms you would use for int.
Moschops (5956)
Have you tried, for example, a search on google for sorting algorithms?
Felicia123 (153)
1
2
3
4
#include< algorithm >

sorting< first_iterator , last_iterator >
Registered users can post here. Sign in or register to post.