Can someone help me with this Java problem?
I want to write a method that takes two strings as arguments and returns true if each character (including space and punctuation) that appears in one string also appears in the other.
Thanks
|
|
Are you interested in testing whether the set of characters in the two strings is identical? (i.e. "abba" == "abbb" but "aaa" != "ba") If so, you can do it quite efficiently by: 1) Insert all characters of str1 into a HashSet s1 2) Insert all characters of str2 into a HashSet s2 3) If s1 and s2 differ in their size return false 4) Traverse str2 and check every character against s1 Note: A) If you deal with ASCII chars only you can use simple arrays instead of hash sets. B) If you only need to verify that the set of characters of str2 is a subset of the set of characters of str1, you can skip steps 2 and 3 |
||||
|
|
|
well to start you off
Do you really want us to write up the logic for you? |
|||
|
|
|
You don't specify what do you want us to help you with, nor what do you have so far, so I guess the best thing I could do is to help you to "THINK" how to solve the problem ( to create the algorithm ) From your description I would came up with the following pseudo-code
I hope that helps you to get started. Try modifying your original post and add more details as you get through it. |
|||||
|
|
Here is an attempt in C++. Hopefully you will get the idea:
Regards, Rafael. |
|||
|
|
|
Depending on your space and time complexity, the solutions may vary. The simplest one, however, and assuming you don't need to write the algorithm, is to add all characters of each to a different set, and then check if both sets include the other, or if the union of both has the same number of elements as each separately. If you do need to write the algorithm, is there any time and space efficiency requirements? Also, if you do need to write it, you are probably studying something in particular, such as dynamic programming, trees, etc. The solution should go the way of whatever it is that you are studying. |
|||
|
|
|
Here's a simple
The logic is self-explanatory:
Note that in this approach, Other things you can do:
I presume from one of OP's comments that there's also a need for a method to find the longest substring of
Note that Since this is homework, I'll leave it to you to study how it works. |
||||
|
|
|
You can take a look at |
|||||||
|