Cracking the coding interview
Arrays and String solutions
Hey guys i am providing the solutions for the question given in the Chapter one Arrays and String of the very famous book Cracking the coding interview. All these solutions are written by myself and checked for all the possible cases. Please take a look at them and help your self to solve your problems. If you have any query regarding the solutions or you want to ask something leave your comment and i will get back to you as soon as possible. Happy coding.
Question 2Given two strings, write a method to decide if one is a permutation of the other. that means that they same number of characters in it but arrangement will be different or we can say that order is different.
Solution- You can find the solution for this problem here.
- Very simple problem just sort the strings and then compare them.
- Sorting the string means that java will use their ascii value for the comparison process and arrange them in the increasing order and after that you can compare strings to be equal or not.
- As permutation means that you have the same characters in the string but they will be arranged in the different order sorting them will put them in the increasing order of their ascii value.
If you find this code hard to understand then please start writing your own code and use pen n paper for that so then you can keep track what is your code all about and what it is calculating.
This problem is one of the most asked question in the interviews so try ti understand this throughly and try similar problems like it.
I wish best of luck to you for your future.
Solution 1 using java.
import java.util.*; import java.lang.*; import java.io.*; /* Name of the class has to be "Main" only if the class is public. */ class Ideone { public static void main (String[] args) throws java.lang.Exception { System.out.println(permutation()); } public static boolean permutation() { String str ="asdfghj"; String str1 = "jhgndsa"; char[] str2 = str.toCharArray(); char[] str3 = str1.toCharArray(); Arrays.sort(str2); Arrays.sort(str3); str = new String(str2); str1 = new String(str3); return str.equals(str1); } }
Note that this approach is not only specific to this type of question you can use this sorting technique in various questions such as if you want to check whether to word are anagrams of one another or not. You can simply sort them and compare them to find out. This approach is also helpful in other questions so i suggest that its better to learn this tricks and keep in mind while attempting the question you may find it useful. You can always search for more coding problems like this to get comfortable to this to approach or you can find new problems where this approach is applicable. So go and search more problems like this and check whether this approach is useful or not and you can tell me about it by commenting and writing about this to me.
Try more and more problems that you find on string and arrays and try to develop an approach the will help you understand problems rather then learning the solution. Once you know how to approach the problem you will able to solve any problem related to strings and array. I wish best of luck to you for your future.
0 comments:
Post a Comment