// **************************************************************** // IntegerList.java // // Define an IntegerList class with methods to create, fill, // sort, and search in a list of integers. // // **************************************************************** public class IntegerList { int[] list; //values in the list //------------------------------------------------------- //create a list of the given size //------------------------------------------------------- public IntegerList(int size) { list = new int[size]; } //------------------------------------------------------- //fill array with integers between 1 and 100, inclusive //------------------------------------------------------- public void randomize() { for (int i=0; i