
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
public int[] selectionSort(int[] array) {
for (int i = 0; i < array.length - 1; i++) {
int min = array[i];
int minIndex = i;
for (int j = i + 1; j < array.length; j++) {
if (min > array[j]) {
min = array[j];
minIndex = j;
}
}
if (minIndex == i) {
array[minIndex] = array[i];
array[i] = min;
}
}
return array;
}
![Your Answer:
1 public int[] selectionSort(int[] array) {
2
for (int i = 0; i < array.length - 1; i++) {
int min =
int minIndex = i;
array[i];
4
%3D
for (int j = i + l; j < array.length; j++) {
if (min > array[j]) {
5
6.
7
min =
array[j];
8.
minIndex = j;
}
10
}
if (minIndex =- i) {
array[minIndex] = array[i];
11
12
13
array[i] - min;
14
}
15
}
16
return array;
17}
18
9](https://content.bartleby.com/qna-images/question/f1bf2399-f913-4a71-a1ed-43d29c065340/ef6675bf-c40d-464e-8905-5bacc2b48df5/frn2aev_thumbnail.png)
Transcribed Image Text:Your Answer:
1 public int[] selectionSort(int[] array) {
2
for (int i = 0; i < array.length - 1; i++) {
int min =
int minIndex = i;
array[i];
4
%3D
for (int j = i + l; j < array.length; j++) {
if (min > array[j]) {
5
6.
7
min =
array[j];
8.
minIndex = j;
}
10
}
if (minIndex =- i) {
array[minIndex] = array[i];
11
12
13
array[i] - min;
14
}
15
}
16
return array;
17}
18
9

Transcribed Image Text:X466: Sorting - Fix Selection Sort
The following method is a Selection Sort method. Within the method, there is an error on one line. You job is to find that line and fix that one error so that the method may work
properly. You will need to understand exactly how a selection sort method works.
Examples:
selectionSort ({4,7,1}) -> {1,4,7}
selectionSort({80,6,6,8,2}) -> {2,6,6,8,80}
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 1 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- Programming language: Processing from Java Question attached as photo Topic: Use of Patial- Full Arraysarrow_forwardRefer to the following method that finds the smallest value in an array. /** Precondition: arr is initialized with int values. * Oparam arr the array to be processed Greturn the smallest value in arr public static int findMin(int[] arr) { int min = /* some value */; int index = 0; while (index < arr.length) { if (arr [index] < min) min = arr [index]; index++; } return min; } Which replacement(s) for /* some value */ will always result in correct execu- tion of the findMin method? I Integer.MIN_VALUE II Integer.MAX_VALUE III arr [0] (A) I only (B) II only (C) III only (D) I and III only (E) II and III onlyarrow_forward2arrow_forward
- TEST23 If(j< array.length)return(array[j] + Test 23(array ; j+1) else return 0; } 6,11,2,7,3 What is returned by TEST23(array,0)?arrow_forwardJava Programming language Please help me with this questionarrow_forwardAn array int[] intArray can be initialized during its definition by A.) It can't be initialized B.) by writing int[] intArray = {1.0f}; C.) by writing int[] intArray = {0,1,2}; D.) by writing int[0-10] intArray = {0,1,2,3,4,5,6,7,8,9};arrow_forward
- Prompt: In Python language, write a function that applies the logistic sigmoid function to all elements of a NumPy array. Code: import numpy as np import math import matplotlib.pyplot as plt import pandas as pd def sigmoid(inputArray): modifiedArray = np.zeros(len(inputArray)) #YOUR CODE HERE: return(modifiedArray) def test(): inputs = np.arange(-100, 100, 0.5) outputs = sigmoid(inputs) plt.figure(1) plt.plot(inputs) plt.title('Input') plt.xlabel('Index') plt.ylabel('Value') plt.show() plt.figure(2) plt.plot(outputs,'Black') plt.title('Output') plt.xlabel('Index') plt.ylabel('Value') plt.show() test()arrow_forwardpublic int binarySearch(int[]array, int num) {int low = 0;//low rangeint high = array.length -1; //high range int mid; //mid rangewhile () //while low is less than or equal to high{mid = ; //set middle range to be (low + high) /2if () { //if the array in the middle range = input number//return mid range }elseif () { //if the array in the middle range > input number//set the high value to be the mid value minus 1 }else{//set low value to be mid value plus one } }//return -1 here because that would mean that the number is not found in the loop}arrow_forwardReturn the First Element in an Array JavaScript Create a function that takes an array containing only numbers and return the first element. Examples getFirstValue ([1, 2, 3]) → 1 getFirstValue ([80, 5, 100])→ 80 getFirstValue ([-500, 0, 50])-500arrow_forward
- int[] cars = {1,2,3,4,5}; for (int i=0; iarrow_forwardGiven the Array declaration below, determine the output: int T[8] = {2, 3, 7, 9, -1, 2, 4, 5}; int x = 5; cout << T[x-2] / T[12-2*x]; int y = -3; cout << pow(T[y+4],T[3-y]);arrow_forwardJava Programming language Please help me with this questionarrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education