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?
|
|
|
| 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 >
|
|
|
|