Forum: Java Nov 12th, 2008 |
| Replies: 6 Views: 592 Yeah collections sounds like a good way to go since the shuffle method is built right in, thanks. |
Forum: Java Nov 12th, 2008 |
| Replies: 6 Views: 592 I think you still don't get it....Say there is a queue with elements a, b and c in that order. I want to know what the best way to put the elements in a random order, so you might save the elements... |
Forum: Java Nov 12th, 2008 |
| Replies: 6 Views: 592 Ok, so say you have a queue with values in it, then you want to randomize the order that they are currently in. |
Forum: Java Nov 12th, 2008 |
| Replies: 6 Views: 592 I've seen a lot of different possible ways to do so, but I was wondering what people thought the most efficient way was. |
Forum: Java Jan 13th, 2008 |
| Replies: 1 Views: 1,176 Hey, I am trying to implement a ctrl + x to close my program when the user clicks on the exit menu item or hits ctrl + x, but so far it is unresponsive, here is my code:
package main;
import... |