Timeline for Word count program in Java
Current License: CC BY-SA 3.0
6 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Jan 10, 2014 at 6:57 | comment | added | 200_success |
1. See my remarks about efficiency in the review. 2. You're right on both counts. Arrays was introduced with Java Collections in Java 1.2, and Arrays.sort(Object[]) uses mergesort, which does not operate in place. In place of Arrays.sort(), you could substitute whatever sorting method you were using before.
|
|
| Jan 9, 2014 at 7:49 | vote | accept | Nitin | ||
| Jan 10, 2014 at 15:15 | |||||
| Jan 9, 2014 at 7:04 | comment | added | Nitin | thanks @200_success. I have couple of doubts 1. Can we scale this application for large number of text e.g. 1 miilion words. 2. Arrays is part of collection framework and use legacy sort which in terns clone the whole can we use sort without using Arrays?. | |
| Jan 8, 2014 at 17:18 | vote | accept | Nitin | ||
| Jan 9, 2014 at 7:49 | |||||
| Jan 7, 2014 at 19:58 | history | edited | 200_success | CC BY-SA 3.0 |
deleted 75 characters in body
|
| Jan 7, 2014 at 19:48 | history | answered | 200_success | CC BY-SA 3.0 |