Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Q1 (20 pts). a. [5 pts] Given an array ao, a ,a2....an2, an. Write and test function Rearrange to rearrange the array elements all even

image text in transcribed
Q1 (20 pts). a. [5 pts] Given an array ao, a ,a2....an2, an. Write and test function Rearrange to rearrange the array elements all even numbers appear before all the odd numbers in the modified array If the array was 17 15 8 12 10 5 14 1 7 6 Then after calling function Rearrange Array elements are: 12 10 4 6 17 15 5 1 8 7 b. [9 pts] Given a Single linked list of integers, write and text function Rearrange to modify the linked list such that all even numbers appear before all the odd numbers in the modified linked list. Also, keep the order of even and odd numbers same. Examples 1: Input: 17->15->8->12->10->5->4->1->7->6->NULL Output: 8->12->10->4->6->17->15->5->7->7->NULL Example 2: Input: 8->12->10->5->4->1->6->NULL Output: 8->12->10->4->6->5-> 1->NULL c. [6 pts] After implementing and testing the above functions, answer the following: 1. What is the space complexity of each data structure (array and linked list)? 2. Compare the time complexity to build, insert a new item at the end of the data structure, delete an item, and find an item in each data structure 3. Which data structure would you prefer to use and why

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

Relational Database Design A Practical Approach

Authors: Marilyn Campbell

1st Edition

1587193175, 978-1587193170

More Books

Students also viewed these Databases questions

Question

What are the APPROACHES TO HRM?

Answered: 1 week ago