Recent content by tshet

  1. 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..
  2. 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...