hw01Task

pdf

School

Brigham Young University, Idaho *

*We aren’t endorsed by this school

Course

381

Subject

Computer Science

Date

Nov 24, 2024

Type

pdf

Pages

3

Uploaded by PrivateStarPartridge3

Report
WEEK 01 Name: Collaborators (if any): 1. Tasks 1.1. Determine Correct Order. If you browsed the text, Levitin discuses the steps for algorithm creation. I believe these steps can be somewhat ordered to your preference. The steps for the best known algorithm for creating algorithms are listed out of order here. What order should they be in according to your preference and why? (You can reference the text, however the steps are somewhat self explanatory so you can just order them and provide a short written description of why you ordered them in the way you did) (1) Understand the problem.We can’t solve anything if we don’t know what needs to be solved. (2) Decide on: computational means, exact vs approximate solving, data struc- ture(s), algorithm design technique. After understanding what needs to be solved we can get into how we can solve it. (3) Design an algorithm. Then we can start designing out a possible solution (4) Analyze the algorithm. After the design, it needs to be analyzed. Is this algorithm well enough or maybe we can think of a better algorithm and go back to the previous step. (5) Prove the correctness of the algorithm. Our algorithm needs to be tested and look for edge cases. (6) Code the algorithm. After careful review of our algorithm, we can start coding. 1.2. Write a short answer. In lecture, we discussed the birthday problem. Pro- vide your own pseudo-code for solving the birthday problem. 1 people = set () #Create empty data set 2 f o r each birthday : 3 i f birthday i s in people : 4 return True 5 e l s e : 6 add birthday to our data set people 7 return False # This w i l l happen in case there i s no equal birthdays . Date : September 17, 2023. 1
2 WEEK 01 2. Week 01 Exercises/Problems 2.1. Jen and Berry’s. Jen drives her ice cream truck to her local elementary school at recess. All the kids rush to line up in front of her truck. Jen is over- whelmed with the number of students (there are 2n of them), so she calls up her associate, Berry, to bring his ice cream truck to help her out. Berry soon arrives and parks at the other end of the line of students. He offers to sell to the last student in line, but the other students revolt in protest: The last student was last! This is unfair! The students decide that the fairest way to remedy the situation would be to have the back half of the line (the n kids furthest from Jen) reverse their order and queue up at Berrys truck, so that the last kid in the original line becomes the last kid in Berrys line, with the (n+1)st kid in the original line be- coming Berrys first customer. (a) Given a linked list containing the names of the 2n kids, in order of the original line formed in front of Jens truck (where the first node contains the name of the first kid in line), describe an O(n)-time algorithm to modify the linked list to reverse the order of the last half of the list. Your algorithm should not make any new linked list nodes or instantiate any new non-constant-sized data structures during its operation. When I read this problem these thoughts came to my mind: (1) By "2n" should I assume that the length of the kids will always be even? If that’s the case then things are simpler (2) In case the length of the kids can be odd then I would have a variable that tracks from 0 to n(length/2) and another variable that tracks the double of the first variable that way I can know when the second variable gets a None value that is the length and I can identify where the middle is. This approach would give me a Time complexity of O(n/2) and a space complexity of O(1) (b) Write a Python function reorder students(L) that implements your algo- rithm. def reorder_students(L): Input: L | linked list with head L.head and size L.size Output: None | This function should modify list L to reverse its last half. Your solution should NOT instantiate: - any additional linked list nodes - any other non-constant-sized data structures ################## # YOUR CODE HERE #
WEEK 01 3 ################## return 1 I ’ l l have 2 v a r i a b l e s one checking f o r the current node and the other checking by 2. So to speak , i f I ’m at node 2 my extra variable w i l l be at node 4. 2 3 slow=f a s t= L . head 4 while f a s t . next and f a s t . next . next : 5 f a s t=f a s t . next . next 6 slow=slow . next 7 slow . next 8 9 prev = None 10 current = slow . next 11 while ( current i s not None) : 12 next = current . next 13 current . next = prev 14 prev = current 15 current = next 16 head = prev 17 This algorithm f i n d s the h a l f kid and then s t a r t i n g from the kid in the middle i t r e v e r s e s the linked l i s t 18 I f I ’m not wrong about this , slow . next = head w i l l give me the new L. head with a l l students ordered and revered a f t e r the kid in the middle .
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help