Question
Help with part of a JAVA program and Thanks in advance. Essentially I just need to sort items in the file using insertion sort and
Help with part of a JAVA program and Thanks in advance. Essentially I just need to sort items in the file using insertion sort and selection sort. here is the part of lab requirement I need help with:
The PersonSort class is the tester class for this program. It has four static methods: main, populate, selectionSort and insertionSort. The main method 1. creates an ArrayList (ArrayList) of Person objects 2. populates it from a file that is supplied to you 3. copies the ArrayList to another one 4. uses the first ArrayList and sorts it using an insertion sort algorithm 5. displays the sorted ArrayList 6. uses the second ArrayList and sorts it using a selection sort algorithm 7. displays the sorted ArrayList The populate method reads in the Person data from a file (see below for the format). See slide 99 for a good example of how to do this. DO NOT assume that you know how many records are in the file. It creates a Person object from each line in the file and adds the object to the first ArrayList. The selectionSort method sorts the ArrayList using the selection sort algorithm. The insertionSort method sorts the ArrayList using the insertion sort algorithm. You must implement these sorting algorithms. A version of this code is containined in the Lesson 3 Source Code. You are not permitted to use the sort method of the Collections framework, or its swap method. The Person objects must be sorted, first by birthday and then by name. The filename of the supplied file is Persons.txt. Place it in the src folder of either Eclipse or IntelliJ. Create a global static constant to hold the file name that will be passed to the File object for reading the file. DO NOT assume that you know how many records are in the file. static final String PERSON_FILE = ./src/Persons.txt; The format of the file is: name month day year You may use a try/catch block or let main throw the FileIO exception.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started