Please explain the code… why first line returns false and the next true…
bool comp(string a, string b){
if(a.length()<=b.length() && b.substr(0,a.size())==a) return false;
else if(b.length()<=a.length() && a.substr(0,b.size())==b) return true;
else return a<b;
}
String sorting comparator
The comparator returns false
if a
is a prefix of b
; otherwise, it compares lexicographically.
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.