Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Help with merge sort using vectors // cmpInt() - comparison function for two ints // returns -/0/+ as a is less than/equal to/greater than b

Help with merge sort using vectors // cmpInt() - comparison function for two ints // returns -/0/+ as a is less than/equal to/greater than b int cmpInt(const int& a, const int& b) { return a - b; }

// MergeSort(): sort the values in the data vector using a Merge Sort

// data - vector to be sorted

// first & last - first and last indices to be sorted

// (makes it possible to sort a sub-vector)

// cmp - function to compare a and b. cmp(a, b) returns

// -/0/+ as a is less than/equal to/greater than b

template

void MergeSort(vector& data, int first, int last, int (*cmp)(const T& a, const T& b)) {

// Implement merge sort

// May write separate Merge function, or include Merge code in MergeSort

}

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

Database Machine Performance Modeling Methodologies And Evaluation Strategies Lncs 257

Authors: Francesca Cesarini ,Silvio Salza

1st Edition

3540179429, 978-3540179429

More Books

Students also viewed these Databases questions

Question

How will the members be held accountable?

Answered: 1 week ago

Question

a. How will the leader be selected?

Answered: 1 week ago