Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

c++ Create a program, with an array of 10 ints, that will: 1. Ask the user if they would like to: a) input values b)

c++

Create a program, with an array of 10 ints, that will: 1. Ask the user if they would like to: a) input values b) provide a range for randomly generated values to fill the array c) use the default range for random values -Random values will be generated with the rand function. See end of chapter 8 slides. 2. Display all elements of the array 3. Ask the user to choose between sorting ascended and descended 4. Ask the user to choose between Bubble and Selection sort Extra credit: Also include BOGOsort (aka dumb sort), where the array is shuffled randomly then checked for order. If BOGOsort is chosen, the user should be told how many shuffles the solution took. 5. Display the array -See 4 6. Ask the user if they wish to return to step 1. The array should be recreated if they return to step 1. Define and make use of these functions: void mySwap(int & a, int & b);//Switches the contents in a and b //Will fill all entries in the array with a number between min and (min + range) void fillRandom(int arr[], int range = 100, int min = 0) //Feel free to add an argument for size of the array; I assumed use of global const /*userSelection, bubbleSort, and selectSort would all have fillRandoms argument list without range or min.*/ If youre unfamiliar with pointers, wait, look to the slides and/or try working on this assignment with a regular array first. If you Another effective way to ease into this assignment without understanding pointers is to use reference parameters (int &) in the mySwap function until you later swap them out for pointers. Alternative valid syntax: void fillRandom(int [] arr,  ) 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions