
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
solve in python coding
1. Sorting
• Begin by filling an array with random numbers:
import numpy as np
np.random.seed(1012)
DATASIZE = 1000
MAX_VALUE = 10000000
data = np.random.randint(0, MAX_VALUE, size=DATASIZE)
• Write a function that is passed a numpy array. The function should walk
through the array element-by-element, comparing the current element to
the next element. Swap if the next is smaller than the current – sorting
these two elements.
• Write a second function that calls the above function n times, where n is
the number of elements (size) of the array. Pass the same numpy array
each time.
• Begin by filling an array with random numbers:
import numpy as np
np.random.seed(1012)
DATASIZE = 1000
MAX_VALUE = 10000000
data = np.random.randint(0, MAX_VALUE, size=DATASIZE)
• Write a function that is passed a numpy array. The function should walk
through the array element-by-element, comparing the current element to
the next element. Swap if the next is smaller than the current – sorting
these two elements.
• Write a second function that calls the above function n times, where n is
the number of elements (size) of the array. Pass the same numpy array
each time.
2. Bubble Sort
• The sort from part 1 can be improved. If the data passed to be sorted is
already sorted, it still performs all of the work, as if the array was not
sorted.
Make two improvements:
• Change the first function (the one that does the comparisons), so that it returns a
boolean that states whether the array is sorted. Make use of that boolean to stop
calling the first function if the array is sorted.
• Consider what happens when the first function is called. For randomly distributed
data, some comparisons will lead to swaps, and others won’t. But, the largest
number will certainly “float” to the end of the array. Future calls of the first
function will not move that largest number, and we could therefore end the
comparisons done in future calls without examining the last position in the array.
• Modify the first function further. Add a parameter that specifies the index at
which the comparisons & swaps should stop. Modify the second function so
that one fewer element is examined each time the first function is called.
• The sort from part 1 can be improved. If the data passed to be sorted is
already sorted, it still performs all of the work, as if the array was not
sorted.
Make two improvements:
• Change the first function (the one that does the comparisons), so that it returns a
boolean that states whether the array is sorted. Make use of that boolean to stop
calling the first function if the array is sorted.
• Consider what happens when the first function is called. For randomly distributed
data, some comparisons will lead to swaps, and others won’t. But, the largest
number will certainly “float” to the end of the array. Future calls of the first
function will not move that largest number, and we could therefore end the
comparisons done in future calls without examining the last position in the array.
• Modify the first function further. Add a parameter that specifies the index at
which the comparisons & swaps should stop. Modify the second function so
that one fewer element is examined each time the first function is called.
3. Selection Sort
• The idea in a selection sort is that you locate the largest item out of a set of
unsorted items, and move it into position at the end of the unsorted items. A
sorted region grows one item at a time, while an unsorted region shrinks.
• As done in Part 1, fill an array with random numbers.
• Write a function that locates the largest element in the portion of the array
beginning at the start of the array, up to a given index, and swaps the largest
item with the item at the given index.
• E.g. If searching a[0] to a[7] locates the largest item at a[4], a[4] and a[7] would be
swapped.
• Write a second function that calls the first function repeatedly, until the entire
array is sorted. (Each time the first function is called, it will search one fewer
element)
• The idea in a selection sort is that you locate the largest item out of a set of
unsorted items, and move it into position at the end of the unsorted items. A
sorted region grows one item at a time, while an unsorted region shrinks.
• As done in Part 1, fill an array with random numbers.
• Write a function that locates the largest element in the portion of the array
beginning at the start of the array, up to a given index, and swaps the largest
item with the item at the given index.
• E.g. If searching a[0] to a[7] locates the largest item at a[4], a[4] and a[7] would be
swapped.
• Write a second function that calls the first function repeatedly, until the entire
array is sorted. (Each time the first function is called, it will search one fewer
element)
4. Insertion Sort
• The idea with an insertion sort is that a sorted region grows one item at a
time, by inserting an item into its correct position within the sorted region.
• As done in Part 1, fill an array with random numbers.
• Write a function that inserts an item into a sorted region of an array. Pass
the function the index of the item to be inserted (i.e. the index of the first
item in the unsorted region). Insert that item by shifting items over one
position, until you have found the correct location to insert the item.
• E.g. if given a = [2 5 8 9 6 3 7] and the index 4, a[4] should be inserted into the
sorted portion, giving [2 5 6 8 9 3 7]
• Write a second function that calls the first function repeatedly, until the
entire array is sorted. (Each time the first function is called, it will insert an
item into a larger sorted region.)
• The idea with an insertion sort is that a sorted region grows one item at a
time, by inserting an item into its correct position within the sorted region.
• As done in Part 1, fill an array with random numbers.
• Write a function that inserts an item into a sorted region of an array. Pass
the function the index of the item to be inserted (i.e. the index of the first
item in the unsorted region). Insert that item by shifting items over one
position, until you have found the correct location to insert the item.
• E.g. if given a = [2 5 8 9 6 3 7] and the index 4, a[4] should be inserted into the
sorted portion, giving [2 5 6 8 9 3 7]
• Write a second function that calls the first function repeatedly, until the
entire array is sorted. (Each time the first function is called, it will insert an
item into a larger sorted region.)
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 4 steps with 2 images

Knowledge Booster
Similar questions
- An array int[] intArray can be initialized during its definition by A.) It can't be initialized B.) by writing int[] intArray = {1.0f}; C.) by writing int[] intArray = {0,1,2}; D.) by writing int[0-10] intArray = {0,1,2,3,4,5,6,7,8,9};arrow_forward///////1/////. Given an array of integers, write a PHP function to find the maximum element in the array. PHP Function Signature: phpCopy code function findMaxElement($arr) { // Your code here } Example: Input: [10, 4, 56, 32, 7] Output: 56 You can now implement the findMaxElement function to solve this problem. Let me know answer. //. .arrow_forwardPrompt: In Python language, write a function that applies the logistic sigmoid function to all elements of a NumPy array. Code: import numpy as np import math import matplotlib.pyplot as plt import pandas as pd def sigmoid(inputArray): modifiedArray = np.zeros(len(inputArray)) #YOUR CODE HERE: return(modifiedArray) def test(): inputs = np.arange(-100, 100, 0.5) outputs = sigmoid(inputs) plt.figure(1) plt.plot(inputs) plt.title('Input') plt.xlabel('Index') plt.ylabel('Value') plt.show() plt.figure(2) plt.plot(outputs,'Black') plt.title('Output') plt.xlabel('Index') plt.ylabel('Value') plt.show() test()arrow_forward
- 4. Arrays. In order to test the functions in this question, you will need an array. We can create a three- dimensional test array as follows: testArray xijk - máx rij,k i=1 i=1 i=1 (b) Now suppose we want a function testFn2 which returns the d2 x d3 matrix {zj.k} where di Zj,k = Σ i=1arrow_forwardJAVA Programming Write a function that returns true if you can partition an array into one element and the rest, such that this element is equal to the product of all other elements excluding itself. Examples canPartition ([2, 8, 4, 1]) → true // 8 = 2 x 4 x 1 canPartition ([-1, -10, 1, -2, 20]) → false canPartition ([-1, -20, 5, -1, -2, 2]) truearrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON

Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY