I am building a bubble sort and I want it to be able to accept both Integer and String parameters. I cast all input as Strings and use the compareto method to compare the integers casted as strings and the strings. I am getting some incorrect answer when using compareto to compare the casted integers. What am I doing wrong?
|
|
||||
|
|
|
Integer.compareTo sorts numbers numerically. This is what you want. String.compareTo sorts strings lexicographically; that is, in alphabetical order. I remember in Windows 3.1 that the folder of photos from my digital camera was ordered like this: PHOTO1, PHOTO10, PHOTO100, PHOTO2, PHOTO20, PHOTO3, ... and so on. Windows XP sorts them more like you would expect: PHOTO1, PHOTO2, PHOTO3, ... etc. This is because it has special sorting rules for strings that represent numbers. In lexicographical ordering, each character in one string A is compared to the corresponding character in another string B. For each corresponding character in the two strings:
The fourth point here is why you are getting incorrect answers, assuming Eddie's analysis of your problem is correct. Consider the strings "10" and "2". Lexicographical ordering would look at the first characters of each, '1' and '2' respectively. The character '1' comes before '2' in the character set that Java uses, so it sorts "10" before "2", in the same way that "bare" is sorted before "hare" because 'b' comes before 'h'. I suggest you cast your strings to integers before sorting. Use Integer.parseString to do this. |
|||
|
|
are you sure you want to mix Integers and Strings in the same list? if so, are Integers less or greater than Strings? what is this particular sorting criteria? you can also make a bubble sort method which sorts distinct lists of Integer and lists of String (and lists of any other class). to do so, you can use Generics. for example:
you use the |
|||
|
|
|
Take an instance of Strings can't really be cast to integers, and there is no comparryo method. |
|||
|
|
What you describe isn't really possible... so perhaps you need to post the code. Here is my interpretation of wht you are doing:
The documentation for compareTo is here, you really should follow the contract. |
|||
|
|
|
Firstly you want Comparator not Comparable because Comparator takes two objects whereas Comparable compares the current object to one passed in and you can't change the compareTo() method on String or Integer so:
|
|||||||
|
|
Assuming that what you really mean is that you are converting Integers to Strings, and then comparing, this will not work. For example, let's say you have the Integer
which is correct for ASCII sorting and incorrect for numeric sorting. That is, I assume your code does something like this:
Why do I assume this? Because you are talking about getting an incorrect result and not talking about getting Exceptions. If you are actually getting Exceptions, then the other posters are correct that casting will not work. |
|||
|
|