Write the pseudocode that uses two arrays

Assignment Help JAVA Programming
Reference no: EM132430569

Scenario

Selection sort is best understood by imagining that you have two lists, Aand B. Initially, we have list A, containing all the unsorted elements, and list B is empty. The idea is to use B to store the sorted elements. The algorithm would work by finding the smallest element from A and moving it to the end of B. We keep on doing this until A is empty and B is full. Instead of using two separate lists, we can use the same input array, keeping a pointer to divide the array in two.

In real life, this can be explained by picturing how you would sort a deck of cards. Using a shuffled deck, you can go through the cards one by one until you find the lowest card. You set this aside as a new, second pile. You then look for the next-lowest card and once found, you put it at the bottom of the second pile. You repeat this until the first pile is empty. 

One way to arrive at the solution is to first write the pseudocode that uses two arrays (A and B, in the preceding description). Then, adopt the pseudocode to store the sorted list (array B) in the same input array by using the swap method. 

Aim

Implement selection sort in Java.

Prerequisites

  • The sort() method should accept an integer array and sort it. 

Steps for Completion

  1. Split the input array in two by using an array index pointer. 
  2. The sort method should accept an integer array and sort it. 
  3. Iterate over the unsorted portion of the array to find the minimum.
  4. The minimum item is then swapped so that it can be added to the end of the sorted portion.

 

public class SelectionSort {

 

  // Write your code here

 

  public static void main(String[] args) {

    /*  

    * This main method is a stub.

    * It does nothing.

    * Feel free to write your own code to test your implementation.

    * In this case, we have nothing actionable in here, just this comment block, so the JVM should rapidly lose interest and move on to the rest of your code.

    */

  }

 

}

Reference no: EM132430569

Questions Cloud

How do the four components of culture : What does your chosen theorist say about the role of culture in shaping human behavior?How do the four components of culture?
Program that tracks goldfish stored in fish tanks : Implement a program that tracks goldfish stored in fish tanks. The FishTank class includes:
Design an application for the sublime sandwich shop : Design an application for the Sublime Sandwich Shop. The user makes sandwich order choices from list boxes, and the application displays the price.
Form field validation and error messages : You have created a basic form and added interactivity to images using JavaScript. Now it is time to validate information entered into your form fields
Write the pseudocode that uses two arrays : Selection sort is best understood by imagining that you have two lists, Aand B. Initially, we have list A, containing all the unsorted elements
Explain ways addiction impacts physical well being of client : explain how gender might influence the physical, emotional, and spiritual well being of clients with problems.Explain ways addiction impacts physical well being
Improve the performance of program : In a Java program that used a sequential file, how or why would would using either a random access or index sequential file improve the performance
Provide a standard three-parameter constructor : Provide a standard three-parameter constructor for a class named CellPhone. The class contains three instance variables-manufacturer, model, and price
Generate an application named studentsstanding : Generate an application named StudentsStanding.java that allows you to enter student data that consists of an ID number

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd