I wanted to know how can I compare two rearranged strings E.g if String a="string" ,String b="tsrngi" ... If I compare a.equals(b), It will return false because of order of characters... I want it to return true because characters are same but only order is different.. Thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Sort them, then compare. To sort, use something like:
|
|||
|
I really like JRL's solution, since it's quite elegant. At the same time, I feel that because there is a solution that is an order of complexity better that I should share it. It's less elegant, but it's
|
|||||||||||
|