Tagged Questions
17
votes
10answers
3k views
Sorted array list in Java
I'm baffled that I can't find a quick answer to this. I'm essentially looking for a datastructure in Java which implements the java.util.List interface, but which stores its members in a sorted ...
8
votes
7answers
308 views
Automatically sorted by values map in Java
I need to have an automatically sorted-by-values map in Java - so that It keeps being sorted at any time while I'm adding new key-value pairs or update the value of an existing key-value pair, or even ...
3
votes
1answer
60 views
Why haven't Sorted JLists been made part of the standard Swing library yet?
"Creating a Sorted JList Component" says,
Version 6 of the Java Platform, Standard Edition (Java SE, formerly
referred to as J2SE) will add sorting and filtering abilities to the
...
2
votes
4answers
124 views
Need a fast alternative to Java TreeMap<Integer, Character> that can hold many mappings without slowdown
I am writing a Java program that uses a TreeMap and the performance slows down to a crawl once there are 10's of thousands of integer, character mappings.
I was wondering if there is an ...
2
votes
4answers
225 views
Java - sorted stack
I need a sorted stack. I mean, the element removed from the stack must be the one with great priority. Stack dimension varies a lot (becomes bigger very fast).
I need also to search elements in that ...
1
vote
1answer
153 views
Retrieving JTable line content after user sorted content by clicking on column
I have a pane with two tables A and B. When a row is selected in A, the content of B should be upated.
My code detects row selections in A fine. But, when the user clicks on the column header to ...
1
vote
5answers
5k views
Java Code Review: Merge sorted lists into a single sorted list
I want to merge sorted lists into a single list. How is this solution? I believe it runs in O(n) time. Any glaring flaws, inefficiencies, or stylistic issues?
I don't really like the idiom of setting ...
1
vote
5answers
2k views
Java: What is the best way to find elements in a sorted List?
I have a
List<Cat>
sorted by the cats' birthdays. Is there an efficient Java Collections way of finding all the cats that were born on January 24th, 1983? Or, what is a good approach in ...
0
votes
1answer
29 views
implementing sorted “watchlist” class in java: what instruments to use?
I need to implement a WatchList class as a part of a Java client-server app. WL is essentially an array of Items, each of which has a timestamp. I am responsible for for the client side of the app. ...
0
votes
4answers
64 views
Real time sorted by value, auto-discarding, bounded collection ?
I spent some time to try to make a collection that:
1) is sorted by value (not by key)
2) is sorted each time an element is added or modified
3) is fixed size and discard automatically ...
0
votes
2answers
44 views
Automatic indexed sorted array maintained by Java?
Is there a feature in java by which I define an array as to keep it in a sorted fashion which will let me insert or remove an element in this array. This is to avoid expensive re-sort when an element ...
0
votes
4answers
103 views
Creating new String with sorted letters from a String word in Java
How do I create a String with alphabetical order letters taken from another String?
Let's say I have something like this
String theWord = "Hello World";
How do I compute the new String to make it ...