100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Exam (elaborations)

WGU C949 - Searching and Sorting Algorithms Questions and Answers 100% Correct

Rating
-
Sold
-
Pages
17
Grade
A
Uploaded on
09-10-2024
Written in
2024/2025

WGU C949 - Searching and Sorting Algorithms Questions and Answers 100% CorrectWGU C949 - Searching and Sorting Algorithms Questions and Answers 100% CorrectWGU C949 - Searching and Sorting Algorithms Questions and Answers 100% CorrectWGU C949 - Searching and Sorting Algorithms Questions and Answers 100% Correct Binary search - ANSWER-A faster algorithm for searching a list if the list's elements are sorted and directly accessible (such as an array). Binary search first checks the middle element of the list. If the search key is found, the algorithm returns the matching location. If the search key is not found, the algorithm repeats the search on the remaining left sublist (if the search key was less than the middle element) or the remaining right sublist (if the search key was greater than the middle element). Binary search efficiency - ANSWER-For an N element list, the maximum number of steps required to reduce the search space to an empty sublist is [ log2 N ] + 1 Selection sort - ANSWER-Sorting algorithm that treats the input as two parts, a sorted part and an unsorted part, and repeatedly selects the proper next value

Show more Read less
Institution
WGU C949 - Searching And Sorting Algorithms
Course
WGU C949 - Searching and Sorting Algorithms










Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
WGU C949 - Searching and Sorting Algorithms
Course
WGU C949 - Searching and Sorting Algorithms

Document information

Uploaded on
October 9, 2024
Number of pages
17
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Content preview

WGU C949 - Searching and

Sorting Algorithms Questions and

Answers 100% Correct


Binary search - ANSWER-A faster algorithm for searching a list if the list's

elements are sorted and directly accessible (such as an array). Binary search

first checks the middle element of the list. If the search key is found, the

algorithm returns the matching location. If the search key is not found, the

algorithm repeats the search on the remaining left sublist (if the search key

was less than the middle element) or the remaining right sublist (if the

search key was greater than the middle element).




Binary search efficiency - ANSWER-For an N element list, the maximum

number of steps required to reduce the search space to an empty sublist is

[ log2 N ] + 1




Selection sort - ANSWER-Sorting algorithm that treats the input as two parts,

a sorted part and an unsorted part, and repeatedly selects the proper next

value to move from the unsorted part to the end of the sorted part.

,Selection sort efficiency - ANSWER-If a list has N elements, the outer loop

executes N times. For each of those N outer loop executions, the inner loop

executes an average of N/2 times. So the total number of comparisons is

proportional to N * (N/2), or O(N^2)




Selection sort (python) - ANSWER-# replace "^\.+" with space

def SelectionSort(numbers):

....for idx in range(len(numbers)):

........min_idx = idx

........for comp in range(idx+1, len(numbers)):

............if numbers[min_idx] > numbers[comp]:

................min_idx = comp

........temp = numbers[idx]

........numbers[idx] = numbers[min_idx]

........numbers[min_idx] = temp

if __name__ == "__main__":

....numlist = [ 99, 77, 33, 55, 11 ]

....print("Before: " + str(numlist))

....SelectionSort(numlist)

, ....print("After: " + str(numlist))




Binary search (python) - ANSWER-# replace "^\.+" with space

def BinarySearch(num, numbers):

....low = 0

....high = len(numbers) - 1

....mid = 0

....while low <= high:

........mid = (high + low) // 2

........if numbers[mid] < num:

............low = mid + 1

........elif numbers[mid] > num:

............high = mid - 1

........else:

............return mid

....return -1

if __name__ == "__main__":

....numlist = [ 11, 33, 55, 77, 99 ]

....for val in (11, 22, 55, 88, 99):

Get to know the seller

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.
NursingTutor1 West Virginia University
View profile
Follow You need to be logged in order to follow users or courses
Sold
1633
Member since
2 year
Number of followers
1073
Documents
18045
Last sold
14 hours ago
Nursing Tutor

Paper Due? Worry not. Hello. Welcome to NursingTutor. Here you\'ll find verified study materials for your assignments, exams and general school work. All papers here are graded A to help you get the best grade. Also, I am a friendly person so, do not hesitate to send a message in case you have a query. I wish you Luck.

3.9

447 reviews

5
212
4
76
3
89
2
21
1
49

Recently viewed by you

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

Frequently asked questions