Recent content by tshet
-
T
Java Java selection sort code crashes on array access
Well, I've taken the structure of my bubble sort and put it into my selection sort. I'm just trying to change the code for the actual selection part. I'm just getting simple mistakes now..- tshet
- Post #3
- Forum: Programming and Computer Science
-
T
Java Java selection sort code crashes on array access
Hi, I'm currently working on my selection sort code, and I've come across some problems. i import java.util.Arrays; import java.io.*; public class SelectionSort { int a[]; static int n; public static void main(String[] args) { int array[] = { 5,3,9,7,1,8 }; n = 6...- tshet
- Thread
- Java Sort
- Replies: 4
- Forum: Programming and Computer Science