Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

For the whole question, pseudo-instructions are not allowed except “j target_label”
and “jr ra”. One suggestion for assembly programming problems is that you can include
comments to one or a block of instructions.

Question a and b regarding the pictures attached below

(a) Implement the C code snippet in RISC-V assembly language. Use so and
s1 to hold the variable i, and min idx in the function selectionSort.
Be sure to handle the stack pointer appropriately. Clearly comment on your
code.
(b) Assume that the selectionSort is the function called. Draw the status of
the stack before calling selectionSort and during each function call. Indicate
stack addresses and names of registers and variables stored on the stack; mark
the location of sp; and clearly mark each stack frame. Assume the sp starts at
0x8000.
expand button
Transcribed Image Text:(a) Implement the C code snippet in RISC-V assembly language. Use so and s1 to hold the variable i, and min idx in the function selectionSort. Be sure to handle the stack pointer appropriately. Clearly comment on your code. (b) Assume that the selectionSort is the function called. Draw the status of the stack before calling selectionSort and during each function call. Indicate stack addresses and names of registers and variables stored on the stack; mark the location of sp; and clearly mark each stack frame. Assume the sp starts at 0x8000.
4.
void swap (int *xp, int *yp)
{
Consider the following C code snippet.
int temp = *xp;
*xp
*yp;
*yp = temp;
}
int findMinimum (int arr[], int N)
{
}
// variable to store the index of minimum element
int min_idx = 0;
int min_E =
// Traverse the given array
for (int i = 1; i < N; i++) {
// If current element is smaller than min_idx then update it
if (arr[i] < min_E) {
min idx = i;
min_E = arr [min_idx];
}
arr [min_idx];
}
return min_idx;
}
/* Function to sort an array using selection sort*/
void selectionSort (int arr[], int n)
{
int i, min_idx;
// One by one move boundary of unsorted subarray
for (i = 0; i < n-1; i++)
{
// Find the minimum element in unsorted array
min_idx = findMinimum (&arr[i], n-i);
// Swap the found minimum element with the first element
if (min_idx != 0)
swap (&arr [min_idx+i], &arr[i]);
expand button
Transcribed Image Text:4. void swap (int *xp, int *yp) { Consider the following C code snippet. int temp = *xp; *xp *yp; *yp = temp; } int findMinimum (int arr[], int N) { } // variable to store the index of minimum element int min_idx = 0; int min_E = // Traverse the given array for (int i = 1; i < N; i++) { // If current element is smaller than min_idx then update it if (arr[i] < min_E) { min idx = i; min_E = arr [min_idx]; } arr [min_idx]; } return min_idx; } /* Function to sort an array using selection sort*/ void selectionSort (int arr[], int n) { int i, min_idx; // One by one move boundary of unsorted subarray for (i = 0; i < n-1; i++) { // Find the minimum element in unsorted array min_idx = findMinimum (&arr[i], n-i); // Swap the found minimum element with the first element if (min_idx != 0) swap (&arr [min_idx+i], &arr[i]);
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
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
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education