Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For this lab you will implement two searches and two sorts Searches - The searches will take a data vector and an element to find,

For this lab you will implement two searches and two sorts

Searches - The searches will take a data vector and an element to find, and return the index of the element in the vector, and -1 if the item is not found in the vector. Searches must work for integer, double, char, and string. Whether this is accomplished through templating or overloading is up to you. Must be named linearSearch and binarySearch.

  • Linear Search
  • Binary Search

Sorts - The sorts will take a data vector and return a sorted copy of the vector. Sorts must also work for integer, double, char, and string as with the searches. Must be named mergeSort and quickSort.

  • Quicksort
  • Merge Sort

You may include additional helper functions, if you wish. Submit Searches.h and Sorts.h with the implemented functions.

Here's the starter code for Sorts.h

#pragma once

#include

template std::vector mergeSort(std::vector lst){ }

template std::vector quickSort(std::vector lst){ } Here's the starter code for Searches.h

#pragma once

#include

template int linearSearch(std::vector data, T target){ }

template int binarySearch(std::vector data, T target){ }

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

Inference Control In Statistical Databases From Theory To Practice Lncs 2316

Authors: Josep Domingo-Ferrer

2002nd Edition

3540436146, 978-3540436140

More Books

Students also viewed these Databases questions

Question

Differentiate Personnel Management and Human Resource Management

Answered: 1 week ago

Question

Describe the functions of Human resource management

Answered: 1 week ago

Question

What are the objectives of Human resource planning ?

Answered: 1 week ago

Question

Explain the process of Human Resource Planning.

Answered: 1 week ago

Question

8. Do the organizations fringe benefits reflect diversity?

Answered: 1 week ago