Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This question already has an answer here:

I am trying to optimize a function which does binary search of strings in Javascript.

Binary search requires you to know whether the key is == the pivot or < the pivot.

But this requires two string comparisons in Javascript, unlike in C like languages which have the strcmp() function that returns three values (-1, 0, +1) for (less than, equal, greater than).

Is there such a native function in Javascript, that can return a ternary value so that just one comparison is required in each iteration of the binary search?

share|improve this question
@stereofrog Nice lateral solution – HRJ Jan 30 '10 at 18:22

marked as duplicate by Ansgar Wiechers, Lukas Knuth, Rachel Gallen, Nicolas Dudebout, syb0rg Apr 24 at 0:50

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 84 down vote accepted

You can use the localeCompare() method.

string_a.localeCompare(string_b);

/* Returns:

 0:  exact match

-1:  string_a < string_b

 1:  string_b > string_b

 */

Further Reading:

share|improve this answer
2  
Unfortunately, stringCompare is not reliable. Opera, IE, Firefox, Chrome and Safari all return 1 for 'dog'.localeCompare('cat'), which is to be expected, and -1 when you reverse the caller and the argument. BUt capital letters behave oddly- 'dog'.localeCompare('Dog') Of the browsers I tested, only Safar 4 returned 1. It returns -1 in IE8 and firefox 3, and Opera 9 and Chrome both return +32. – kennebec Jan 30 '10 at 18:32
7  
You can use toLowerCase or toLocaleLowerCase when you want case insensitive comparisons. – Fabrice Mar 3 '11 at 11:18
1  
I think it's important to note that V8 (Chrome) seems to interpret ECMA-262 differently than IE/Firefox on localeCompare. For example: "a".localeCompare("Z") should return -1 but instead returns 7 which is the charcode of "a" - charcode of "Z". Unfortunately, the language in the specification is loose, specifying that localeCompare() returns negative number, a positive number or 0. (Not specifically -1, 1, 0). I filed a bug report in the hope this might change, but it's been an issue since August 2010, so I doubt it will. – JoshVarty Mar 21 '12 at 3:36
''.localeCompare.call(string_a, string_b); – Ilya Kharlamov May 7 at 9:53

You can use the comparison operators to compare strings. A strcmp function could be defined like this:

function strcmp(a, b) {
    if (a.toString() < b.toString()) return -1;
    if (a.toString() > b.toString()) return 1;
    return 0;
}

Edit    Here’s a string comparison function that takes at most min { length(a), length(b) } comparisons to tell how two strings relate to each other:

function strcmp(a, b) {
    a = a.toString(), b = b.toString();
    for (var i=0,n=Math.max(a.length, b.length); i<n && a.charAt(i) === b.charAt(i); ++i);
    if (i === n) return 0;
    return a.charAt(i) > b.charAt(i) ? -1 : 1;
}
share|improve this answer
1  
But this routine does exactly what the OP doesn't want to do: there are two string comparisons (let alone those function calls to "toString"). – Pointy Jan 30 '10 at 16:06
@Pointy: It’s not possible with just one comparison. You need at least min {a.length, b.length} steps (compare two characters at a time) to determine if the strings are equal or not. (Even localeCompare will do that internally.) – Gumbo Jan 30 '10 at 16:49
No, localeCompare will not do that internally. Comparing the characters is implemented as a subtraction, so as soon as there's a non-zero result of that operation you know the answer. Your answer can re-compare possibly all the characters of each string. – Pointy Jan 30 '10 at 17:06
@Pointy: But the substraction is done character by character. And that’s the point. That takes at most (and not at least as I wrote) min {a.length, b.length} steps (in the case where both strings are equal). But you’re right. It’s better to test for equality first as that takes the most steps. – Gumbo Jan 30 '10 at 17:45
@Gumbo localeCompare doesn't have to be in Javascript right? It could be natively implemented. Or I have missed something... – HRJ Jan 31 '10 at 4:01
show 3 more comments

Well in JavaScript you can check two strings for values same as integers so yo can do this:

  • "A" < "B"
  • "A" = "B"
  • "A" > "B"

And therefore you can make your own function that checks strings the same way as the strcmp().

So this would be the function that does the same:

function strcmp(a, b)
{   
    return (a<b?-1:(a>b?1:0));  
}
share|improve this answer
1  
Again, read the original question!! The point is to avoid doing more than one string comparison. – Pointy Jan 30 '10 at 16:07
4  
Oh sorry. Didn't see that... At least this works for someone. =| – Cipi Jan 30 '10 at 18:04

Not the answer you're looking for? Browse other questions tagged or ask your own question.