how to sort alphabetically | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 1

how to sort alphabetically

Hello, I am working with C/C++ and I wanted to know if there is a simple way to be able to compare two strings and know which of the two comes first in the alphabet

3rd Feb 2022, 1:20 AM
Julio Amaro
Julio Amaro - avatar
3 Respostas
+ 3
If you are using C++ then std::string class objects have relational operators overloaded accordingly so that you can simply treat them as any other objects while performing comparison between 2 of them. If you are using C then strcmp () is what you might be looking for. ---- If the main motive of comparing 2 strings lexicographically is to sort a collection of them then as YUGRAJ said, there are factory function for those defined in bot C and C++ standard libraries. std::sort () in C++ qsort () in C ----- Useful links : - std::string relation operators : https://www.cplusplus.com/reference/string/string/operators/ - strcmp () : https://www.cplusplus.com/reference/cstring/strcmp/ - std::sort () : https://www.cplusplus.com/reference/algorithm/sort/ - qsort () : https://www.cplusplus.com/reference/cstdlib/qsort/
3rd Feb 2022, 2:06 AM
Arsenic
Arsenic - avatar
+ 1
Do you mean to sort a collection of strings, or compare two strings to see which one was lexicographically greater?
3rd Feb 2022, 1:50 AM
Ipang
0
Yeah simple sort function on string array Or vector will do that it will give you lexicographically sorted value
3rd Feb 2022, 1:33 AM
YUGRAJ