/125spring2007/oop/comparable/StringSort.java

http://csed.googlecode.com/ · Java · 144 lines · 49 code · 12 blank · 83 comment · 6 complexity · aa62469b78e177d5e79420c97b04be55 MD5 · raw file

  1. package oop.comparable;
  2. /*
  3. Slow but simple sorting algorithm. Don't use this if you need to quickly
  4. sort a lot of data!
  5. s.compareTo(t) returns
  6. - a negative integer if s comes before t;
  7. - 0 if s equals t
  8. - a positive integer if s comes after t
  9. Look at the JavaDoc definition of String: the String class implements
  10. the Comparable<String> interface. An interface is a collection of method headers,
  11. and for a class to say that it implements a particular interface means
  12. the class promises to provide implemented methods with exactly those headers.
  13. Here is the definition of the Comparable<String> interface:
  14. public interface Comparable<String> {
  15. public int compareTo(String o);
  16. }
  17. The idea here is that any class that implements the Comparable<String> interface
  18. will provide the compareTo method for comparing objects. We use an
  19. interface because different objects will have different criteria for how
  20. they want to compare themselves.
  21. For example, in the Email class we could compare emails just by username,
  22. while ignoring the extension. Or perhaps we had some reason for sorting
  23. the emails first by extension, and then by username. We can implement
  24. the Email compareTo method whatever way we need.
  25. Lets make our own interface. Suppose you want to keep track of basic information
  26. about certain objects, such as who owns the object, when it was created,
  27. what type of object it is, and so on. Such information would be useful in a file
  28. system, or any a document management program where you need to keep track of such
  29. information.
  30. Here's the interface:
  31. public interface Information {
  32. public String getOwner();
  33. public java.util.Date getDateCreated();
  34. public String getType();
  35. public void setType(String type);
  36. }
  37. Now any class you wish can implement this interface. It is then up to the class
  38. to provide implementations of each of these methods. This is really elegant
  39. idea because it completely seperates the interface from implementation.
  40. As an analogy, consider electrical outlets like you would find in your house.
  41. In North America, at least, outles have standard geometric shape, and a
  42. standard electrical output. You can plug any device into any outlet, now matter
  43. what the device is, and now matter how the outlet draws its electricity. It
  44. doesn't matter if the outlet is running on solar power, hydroelectric power,
  45. geothermal power, or a hamster in a wheel. All that matters is that it delivers
  46. on its promise of delivering
  47. a certain amount of electricity.
  48. Electrical outlets also give a nice example of extending a class. Original outlets
  49. only allowed two-pronged plugs. But over time, a third ground plug was added
  50. (http://en.wikipedia.org/wiki/Electrical_outlet). In Java, we could denote the situation
  51. like this:
  52. interface Outlet {
  53. public Electricity leftProng();
  54. public Electricity rightProng();
  55. }
  56. interface GroundedOutlet extends Outlet {
  57. public Ground groundProng();
  58. }
  59. The beauty of this approach is that if you have a two-pronged plug, you
  60. can plug it into either outlet. That's because the GroundedOutlet has not
  61. modifed the basic Outlet; it simply extends, adding extra functionality. You can
  62. think of it as the grounded outlet remaining backwards compatible with
  63. the regular outlet.
  64. Of course, a three-pronged plug won't work in a two-pronged outlet.
  65. */
  66. import java.util.Arrays;
  67. import oop.diary.Email;
  68. public class StringSort {
  69. public static void bubblesort(String[] arr) {
  70. boolean done = false;
  71. while (!done) {
  72. done = true;
  73. for (int i = 1; i < arr.length; ++i) {
  74. if (arr[i - 1].compareTo(arr[i]) > 0) {
  75. String temp = arr[i - 1];
  76. arr[i - 1] = arr[i];
  77. arr[i] = temp;
  78. done = false;
  79. }
  80. }
  81. }
  82. }
  83. public static <T extends Comparable<T>> void bubblesort(T[] arr) {
  84. boolean done = false;
  85. while (!done) {
  86. done = true;
  87. for (int i = 1; i < arr.length; ++i) {
  88. if (arr[i - 1].compareTo(arr[i]) > 0) {
  89. T temp = arr[i - 1];
  90. arr[i - 1] = arr[i];
  91. arr[i] = temp;
  92. done = false;
  93. }
  94. }
  95. }
  96. }
  97. public static void test1() {
  98. String[] arr = { "cat", "bat", "house", "up", "yum", "toast", "tug" };
  99. bubblesort(arr);
  100. System.out.printf("%s", Arrays.toString(arr));
  101. }
  102. public static void test2() {
  103. Email[] arr = { new Email("merve@gmail.com"),
  104. new Email("merve@hotmail.com"), new Email("mj1@sfu.ca"),
  105. new Email("carl@sfu.ca"), new Email("pleg34@misty.net"),
  106. new Email("vivaldi@sirrus.com") };
  107. bubblesort(arr);
  108. System.out.printf("%s", Arrays.toString(arr));
  109. }
  110. public static void main(String[] args) {
  111. // test1();
  112. test2();
  113. }
  114. }