I was wondering what the time complexity (big O) of the .equals operator in Java was for two strings.
Basically, if I did stringOne.equals(stringTwo) how well does this perform?
Thanks.
Time Complexity: O(min(n,m)) where n and m are the length of the strings. Auxiliary Space: O(max(n,m)) where n and m are the length of the strings.
Java String equals() Method The equals() method compares two strings, and returns true if the strings are equal, and false if not. Tip: Use the compareTo() method to compare two strings lexicographically.
In java both == and equals() method is used to check the equality of two variables or objects. == is a relational operator which checks if the values of two operands are equal or not, if yes then condition becomes true. equals() is a method available in Object class and is used to compare objects for equality.
In simple words, == checks if both objects point to the same memory location whereas . equals() evaluates to the comparison of values in the objects. If a class does not override the equals method, then by default, it uses the equals(Object o) method of the closest parent class that has overridden this method.
The other answers here are over-simplistic.
In general, proving that two different Strings are equal is O(n)
because you may have to compare each character.
However this is only a worst-case: there are many shortcuts that mean that the equals()
method can perform much better than this in the average / typical cases:
O(1)
if the Strings are identical: they are the same object so equal by definition so the result is trueO(1)
if you are able to check pre-computed hashcodes, which can prove that two Strings are not equal (obviously, it can't help prove that two Strings are equals because many Strings hash to the same hashcode).O(1)
if the Strings are of different lengths (they can't possibly be equal, so the result is false)O(1)
time to compare two Strings. If your Strings aren't completely random, then the result may be anywhere between O(1)
and O(n)
depending on the data distribution.As you can see, the exact performance depends on the distribution of the data.
Apart from that: this is implementation dependent so exact performance characteristics will depend on the version of Java used. However, to my knowledge, all the current main Java implementations do the optimisations listed above so you can expect equals()
performance on Strings to be pretty fast.
A final trick: If you use String interning then all Strings that are equal will be mapped to the same object instance. Then you can use the extremely fast ==
check for object identity in place of equals()
, which is guaranteed to be O(1)
. This approach has downsides (you may need to intern a lot of Strings, causing memory issues, and you need to strictly remember to intern any Strings that you plan to use with this scheme) but it is extremely useful in some situations.
To add to the excellent answers , we can see it looking at the code :
public boolean equals(Object anObject) {
if (this == anObject) { // O(1)
return true;
}
if (anObject instanceof String) //O(1) {
String anotherString = (String)anObject;
int n = value.length;
if (n == anotherString.value.length) { // O(1)
char v1[] = value;
char v2[] = anotherString.value;
int i = 0;
while (n-- != 0) { // O(n)
if (v1[i] != v2[i]) //O(1)
return false;
i++;
}
return true;
}
}
return false;
}
Best case : O(1)
Worst case : O(n)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With