Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

WEEK 4 LAB FACTORIAL main.ccp code #include using namespace std; /* * Returns the factorial of n */ long factorial(int n) { if (n ==

WEEK 4 LAB

FACTORIAL main.ccp code

#include

using namespace std;

/* * Returns the factorial of n */ long factorial(int n) { if (n == 1) return 1; else return n * factorial(n - 1); }

int main() { int n;

cout << "Enter a number: "; cin >> n;

if (n > 0) cout << n << "!= " << factorial(n) << endl; else cout << "Input Error!" << endl;

return 0; }

MINIMUM main.cpp code

#include

using namespace std;

/* * Returns the smallest element in the range [0, n-1] of array a */ int minimum(int a[], int n) { int min = a[0];

for (int i = 1; i < n; i++) if (min > a[i]) min = a[i];

return min; }

int main() { int a[10];

for (int i = 0; i < 10; i++) { a[i] = rand()%100; cout << a[i] << " "; }

cout << endl << "Min = " << minimum(a, 10) << endl;

return 0;

}

SORTING_ALGORITHMS ArrayList.cpp code

#include #include "ArrayList.h"

using namespace std;

/* * Default constructor. Sets length to 0, initializing the list as an empty * list. Default size of array is 20. */ ArrayList::ArrayList() { SIZE = 20; list = new int[SIZE]; length = 0; }

/* * Destructor. Deallocates the dynamic array list. */ ArrayList::~ArrayList() { delete [] list; list = NULL; }

/* * Determines whether the list is empty. * * Returns true if the list is empty, false otherwise. */ bool ArrayList::isEmpty() { return length == 0; }

/* * Prints the list elements. */ void ArrayList::display() { for (int i=0; i < length; i++) cout << list[i] << " "; cout << endl; }

/* * Adds the element x to the end of the list. List length is increased by 1. * * x: element to be added to the list */ void ArrayList::add(int x) { if (length == SIZE) { cout << "Insertion Error: list is full" << endl; } else { list[length] = x; length++; } }

/* * Removes the element at the given location from the list. List length is * decreased by 1. * * pos: location of the item to be removed */ void ArrayList::removeAt(int pos) { if (pos < 0 || pos >= length) { cout << "Removal Error: invalid position" << endl; } else { for ( int i = pos; i < length - 1; i++ ) list[i] = list[i+1]; length--; } }

/* * Bubble-sorts this ArrayList */ void ArrayList::bubbleSort() { for (int i = 0; i < length - 1; i++) for (int j = 0; j < length - i - 1; j++) if (list[j] > list[j + 1]) { //swap list[j] and list[j+1] int temp = list[j]; list[j] = list[j + 1]; list[j + 1] = temp; } }

/* * Quick-sorts this ArrayList. */ void ArrayList::quicksort() { quicksort(0, length - 1); }

/* * Recursive quicksort algorithm. * * begin: initial index of sublist to be quick-sorted. * end: last index of sublist to be quick-sorted. */ void ArrayList::quicksort(int begin, int end) { int temp; int pivot = findPivotLocation(begin, end);

// swap list[pivot] and list[end] temp = list[pivot]; list[pivot] = list[end]; list[end] = temp;

pivot = end;

int i = begin, j = end - 1;

bool iterationCompleted = false; while (!iterationCompleted) { while (list[i] < list[pivot]) i++; while ((j >= 0) && (list[pivot] < list[j])) j--;

if (i < j) { //swap list[i] and list[j] temp = list[i]; list[i] = list[j]; list[j] = temp;

i++; j--; } else iterationCompleted = true; }

//swap list[i] and list[pivot] temp = list[i]; list[i] = list[pivot]; list[pivot] = temp;

if (begin < i - 1) quicksort(begin, i - 1); if (i + 1 < end) quicksort(i + 1, end); }

/* * Computes the pivot location. */ int ArrayList::findPivotLocation(int b, int e) { return (b + e) / 2; }

SORTING_ALGORITHMS main.cpp code

#include #include "ArrayList.h" #include

using namespace std;

/* * Program to test the ArrayList class. */ int main() { srand((unsigned)time(0));

//creating a list of integers ArrayList numbersCopy1, numbersCopy2;

//filling the list with random integers for (int i = 0; i<10; i++) { int number = rand()%100; numbersCopy1.add(number); numbersCopy2.add(number); }

//printing the list cout << "Original list of numbers:" << endl <<"\t"; numbersCopy1.display();

//testing bubblesort cout << endl << "Bubble-sorted list of numbers:" << endl <<"\t"; numbersCopy1.bubbleSort(); numbersCopy1.display();

//testing quicksort cout << endl << "Quick-sorted list of numbers:" << endl <<"\t"; numbersCopy2.quicksort(); numbersCopy2.display();

return 0; }

Exercise 2: Designing and Implementing Algorithms

Design and implement an algorithm that, when given a collection of integers in an unsorted array, determines the third smallest number (or third minimum). For example, if the array consists of the values 21, 3, 25, 1, 12, and 6 the algorithm should report the value 6, because it is the third smallest number in the array. Do not sort the array.

To implement your algorithm, write a function thirdSmallest that receives an array as a parameter and returns the third-smallest number. To test your function, write a program that populates an array with random numbers and then calls your function.

Exercise 3: Recursion

The following problem is a variation of Exercise C-4.27 in the Exercises section of Chapter 4 in our textbook.

Implement a recursive function for computing the n-th Harmonic number:

Hn=ni=11i/

.

Here you have some examples of harmonic numbers.

H1 = 1 H2 = 1 + 1/2 = 1.5 H3 = 1 + 1/2 + 1/3 = 1.8333 H4 = 1 + 1/2 + 1/3 + 1/4 = 2.0833

Exercise 4: Sorting

In this week's lesson, the algorithms quicksort and bubblesort are described. In Sorting Algorithms (Links to an external site.) you can find the class ArrayList, where these sorting algorithms are implemented. Write a program that times both of them for various list lengths, filling the array lists with random numbers. Use at least 10 different list lengths, and be sure to include both small values and large values for the list lengths (it might be convenient to add a parameterized constructor to the class ArrayList so the size of the list can be set at the moment an ArrayList object is declared).

Create a table to record the times as follows.

List Length Bubblesort Time (seconds) Quicksort Time (seconds)

Regarding the efficiency of both sorting methods, what are your conclusions? In addition to the source code and a screenshot of the execution window, please submit a separate document with the table and your conclusions about the experiment. Note: To time a section of your source code, you can do this.

#include  using namespace std; int main() { start = chrono::steady_clock::now(); //add code to time here end = chrono::steady_clock::now(); chrono::duration timeElapsed = chrono::duration_cast>(end-start); cout << "Code duration: " << timeElapsed.count() << " seconds" << endl; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2015 Porto Portugal September 7 11 2015 Proceedings Part 3 Lnai 9286

Authors: Albert Bifet ,Michael May ,Bianca Zadrozny ,Ricard Gavalda ,Dino Pedreschi ,Francesco Bonchi ,Jaime Cardoso ,Myra Spiliopoulou

1st Edition

ISBN: 3319234609, 978-3319234601

More Books

Students also viewed these Databases questions

Question

What are the objectives of a cost management information system?

Answered: 1 week ago

Question

4. How has e-commerce affected business-to-business transactions?

Answered: 1 week ago