Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 4 out of 153 pages
Exam (elaborations)

Data Structures and Algorithm Analysis in C++, 4th edition — Mark Allen Weiss — Complete Test Bank (Ch. 1-12)

Document preview thumbnail
Preview 4 out of 153 pages

Data Structures and Algorithm Analysis in C++, 4th edition — Mark Allen Weiss — Complete Test Bank (Ch. 1-12). Full Chapters Includes; Chapter 1 Programming: A General Overview , Chapter 2 Algorithm Analysis , Chapter 3 Lists, Stacks, and Queues , Chapter 4 Trees , Chapter 5 Hashing , Chapter 6 Priority Queues (Heaps) , Chapter 7 Sorting , Chapter 8 The Disjoint Sets Class , Chapter 9 Graph Algorithms , Chapter 10 Algorithm Design Techniques , Chapter 11 Amortized Analysis , Chapter 12 Advanced Data Structures and Implementation

Content preview

TEST BANK
Data Structures and Algorithm Analysis in C++ | 4th edition


by Mark A. Weiss
ST
U
D
YL
AB

, Table of Content
Chapter 1 Programming: A General Overview

Chapter 2 Algorithm Analysis

Chapter 3 Lists, Stacks, and Queues

Chapter 4 Trees

Chapter 5 Hashing

Chapter 6 Priority Queues (Heaps)
Chapter 7 Sorting

Chapter 8 The Disjoint Sets Class

Chapter 9 Graph Algorithms
ST
Chapter 10 Algorithm Design Techniques

Chapter 11 Amortized Analysis

Chapter 12 Advanced Data Structures and Implementation
U
D
YL
AB

, KLJHGFDSA



CHAPTER 1


Introduction
1.1
/*
Exercise 1.1 All Chapters Included
Selection of integers with k = N/2
select1 => sorting and selecting
select2 => keeping top k
*/ All Answers Included
#include <iostream>
ST
#include <ctime>
#include <cmath>
#include <vector>
#include <algorithm>
using namespace std;
U
void sort(vector<int> & vec)
{ // bubble sort ascending
bool sorted = false;
D
while (!sorted)
{
sorted = true;
for (auto i = 1; i < vec.size(); i++)
YL
{
if (vec[i-1]> vec[i])
{
swap(vec[i],vec[i-1]);
sorted = false;
}
}
AB
}
}

void sortDec(vector<int> & vec)
{ // bubble sort descending
bool sorted = false;
while (!sorted)
{
sorted = true;
for (auto i = 1; i < vec.size(); i++)
{
if (vec[i-1]< vec[i])
{
swap(vec[i],vec[i-1]);
sorted = false;
}
}
}
}




kjhgfdsa

, KLJHGFDSA



int select1(vector<int> nums)
{
int k = (nums.size()+1)/2;
sort(nums);
return nums[k];
}


int select2(const vector<int> &nums)
{
int k = nums.size()/2;
vector<int> topK(nums.begin(), nums.begin() + k);

sortDec(topK);
for (auto i = k; i < nums.size(); i++)
ST
{
if (nums[i] > topK[k-1])
{
for (auto j = k-2; j >=0 ; j--)
if (nums[i] < topK[j])
{topK[j+1] = nums[i]; break;}
else
topK[j+1] = topK[j];
U
if (topK[0] < nums[i])
topK[0] = nums[i];
}
}
D
return topK[k-1];
}

int main()
YL
{
vector<int> nums;
int selected;
time_t start, end;

srand(time(NULL));
AB
for (auto numInts = 1000; numInts<=10000; numInts+=1000)
// sizes 1,000, 2,000, 3,000, ...10,000
{
nums.resize(numInts);

start = time(NULL);
for (auto i = 0; i < 10; i++) // run 10 times
{
for (auto j = 0; j < numInts; j++)
nums[j] = rand()%(2*numInts);
selected = select1(nums); // or selected = select2(nums);
}
end = time(NULL);
cout<<numInts<<"\t"<<difftime(end,start)<<endl;
}
return 0;
}




kjhgfdsa

Document information

Uploaded on
May 10, 2026
Number of pages
153
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers
$19.49

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
Studylab
3.8
(74)
Sold
724
Followers
460
Items
1515
Last sold
3 days ago


Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions