RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Sorting + Computer Science

krazeykow

Sorceror
Sorting + Computer Science

So I'm programming for a friend's class and I need to know which sorting algorithms (bubble . . . etc) to use (can't use the base class library, it's computer science). I need to alphabetize 100 names and also list by increasing employee ID (1001, 1002, 1003).

Which sorts should I use respectively?
 

krazeykow

Sorceror
Jeff;834514 said:
QuickSort most likely... Here is a great site (including code, in java, but should be easy to convert) with lots of demos and explinations of sorting algorithms

Sorting Algorithms Demo

The class is actually taught in java. XD

Thanks again Jeff, I always come here for help in programming, haha, that website was very helpful.
 
Top