Your task for this assignment is to use the C++ standard library sort() function to sort numbers in an array. 1. Use the sort() routine from the C++ standard library with an array to sort 10 random numbers. The program initializes an array with 10 random 2-digit integers (positive and negative) using the rand() function. The program then sortsthe numbers in the array using the sort() function. 2. The program displays on one line the original values in the array before the sort begins. After the sort, the program displays on one line the numbers in sorted order, lowest to highest. 3. Your C++ program is named csc231_prog4_yourlastname.cpp. Your C++ program contains comments starting on line 1 containing this information: a. the ID, section and name of the course b. your name c. this file name d. the program assignment number and due date e. the program purpose You are always encouraged to add additional comments throughout the program that your feel might be helpful to the reader of your source code. 4. Submit your C++ program source code file as an attachment to an email message to kbyron@bmcc.cuny.edu using a subject in this form: “csc231_prog4_yourlastname”. For 66.7% extra credit, add the sort_heap() function to your program. For each sort algorithm, sort the same random numbers. Display the original numbers on one line before sorting. After each sort, display a message identifying the sort algorithm used followed by the sorted numbers on one line. Ref: sort(): https://www.geeksforgeeks.org/sort-c-stl/ sort_heap(): https://www.geeksforgeeks.org/sort_heap-function-in-c/ sort_heap(): https://www.cplusplus.com/reference/algorithm/sort_heap/ rand(): https://www.cplusplus.com/reference/cstdlib/rand/

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 44SA
icon
Related questions
Question

Your task for this assignment is to use the C++ standard library sort() function to sort numbers
in an array.
1. Use the sort() routine from the C++ standard library with an array to sort 10 random
numbers. The program initializes an array with 10 random 2-digit integers (positive and
negative) using the rand() function. The program then sortsthe numbers in the array using
the sort() function.
2. The program displays on one line the original values in the array before the sort begins.
After the sort, the program displays on one line the numbers in sorted order, lowest to
highest.
3. Your C++ program is named csc231_prog4_yourlastname.cpp. Your C++ program contains
comments starting on line 1 containing this information:
a. the ID, section and name of the course
b. your name
c. this file name
d. the program assignment number and due date
e. the program purpose
You are always encouraged to add additional comments throughout the program that your
feel might be helpful to the reader of your source code.
4. Submit your C++ program source code file as an attachment to an email message to
kbyron@bmcc.cuny.edu using a subject in this form: “csc231_prog4_yourlastname”.
For 66.7% extra credit, add the sort_heap() function to your program. For each sort algorithm,
sort the same random numbers. Display the original numbers on one line before sorting. After
each sort, display a message identifying the sort algorithm used followed by the sorted numbers
on one line.

Ref: sort(): https://www.geeksforgeeks.org/sort-c-stl/
sort_heap(): https://www.geeksforgeeks.org/sort_heap-function-in-c/
sort_heap(): https://www.cplusplus.com/reference/algorithm/sort_heap/
rand(): https://www.cplusplus.com/reference/cstdlib/rand/

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Arrays
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr