×
Samples Blogs Make Payment About Us Reviews 4.9/5 Order Now

Python Program to Create Timing Experiment Assignment Solution

July 03, 2024
Prof. Emily Wong
Prof. Emily
🇨🇦 Canada
Python
Prof. Emily Wong, with a Master's degree in Computer Science from the University of Sydney, has completed over 600 Python programming test assignments. She specializes in Python topics such as data visualization, web scraping, natural language processing, and game development.
Key Topics
  • Instructions
  • Requirements and Specifications
Tip of the day
Use Python libraries effectively by importing only what you need. For example, if you're working with data, using libraries like pandas and numpy can save time and simplify complex tasks like data manipulation and analysis.
News
In 2024, the Biden-Harris Administration has expanded high-dosage tutoring and extended learning programs to boost academic achievement, helping programming students and others recover from pandemic-related setbacks. These initiatives are funded by federal resources aimed at improving math and literacy skills​

Instructions

Objective
Write a python assignment program to create timing experiment.

Requirements and Specifications

program to create timing experiment in python

Source Code

QUESTION 1

import random

import time

def bubble_sort(array):

"""

Given an array (list of integers), sort it using bubble sort

"""

n = len(array) # size of array

# Loop through the elements

for i in range(n):

# Loop through the elements from 0 to n-i-1

for j in range(n-i-1):

if array[j] > array[j+1]: # the element on the left is higher than the element on the right

# swap

array[j], array[j+1] = array[j+1], array[j]

if __name__ == '__main__':

# Ask user for size of array

n = int(input("Enter size: "))

# Create array

array = list()

# Generate n random integers and fill array

for i in range(n):

array.append(random.randint(-100,100)) # between -100 and 100

# Print original array

print("Original Array", array)

# Sort

bubble_sort(array)

# Print sorted array

print("Sorted Array:", array)

input()

QUESTION 2

import random

import time

def selection_sort(array):

"""

Given an array (list of integers), sort it using selection sort

"""

n = len(array) # size of array

# Loop through the elements

for i in range(n):

# Loop through the elements from 0 to n-i-1

min_index = i

for j in range(i+1, n):

if array[min_index] > array[j]:

min_index = j

# Swap

array[i], array[min_index] = array[min_index], array[i]

if __name__ == '__main__':

# Ask user for size of array

n = int(input("Enter size: "))

# Create array

array = list()

# Generate n random integers and fill array

for i in range(n):

array.append(random.randint(-100,100)) # between -100 and 100

# Print original array

print("Original Array", array)

# Sort

selection_sort(array)

# Print sorted array

print("Sorted Array:", array)

input()

QUESTION 3

import random

import time

def bubble_sort(array):

"""

Given an array (list of integers), sort it using bubble sort

"""

n = len(array) # size of array

# Loop through the elements

for i in range(n):

# Loop through the elements from 0 to n-i-1

for j in range(n-i-1):

if array[j] > array[j+1]: # the element on the left is higher than the element on the right

# swap

array[j], array[j+1] = array[j+1], array[j]

if __name__ == '__main__':

# Create running_time variable

running_time = 0

# Ask user for size of array

n = int(input("Enter size: "))

# Variable to store the average running time

avg_time = 0

# Begin with simulation the process 1000 times

for _ in range(1000):

# Create array

array = list()

# Generate n random integers and fill array

for i in range(n):

array.append(random.randint(-100,100)) # between -100 and 100

# Record start time

start_time = time.time()

# Sort

bubble_sort(array)

# Record end time

end_time = time.time()

# Calculate running time and add to avg_time

running_time = (end_time-start_time)

avg_time += running_time

# Calculate avgerage running time

avg_time = avg_time / 1000.0

# Print

print("The average running time for Bubble Sort is: {:.4f} ms".format(avg_time*1000.0))

input()

QUESTION 4

import random

import time

def selection_sort(array):

"""

Given an array (list of integers), sort it using selection sort

"""

n = len(array) # size of array

# Loop through the elements

for i in range(n):

# Loop through the elements from 0 to n-i-1

min_index = i

for j in range(i+1, n):

if array[min_index] > array[j]:

min_index = j

# Swap

array[i], array[min_index] = array[min_index], array[i]

if __name__ == '__main__':

# Create running_time variable

running_time = 0

# Ask user for size of array

n = int(input("Enter size: "))

# Variable to store the average running time

avg_time = 0

# Begin with simulation the process 1000 times

for _ in range(1000):

# Create array

array = list()

# Generate n random integers and fill array

for i in range(n):

array.append(random.randint(-100,100)) # between -100 and 100

# Record start time

start_time = time.time()

# Sort

selection_sort(array)

# Record end time

end_time = time.time()

# Calculate running time and add to avg_time

running_time = (end_time-start_time)

avg_time += running_time

# Calculate avgerage running time

avg_time = avg_time / 1000.0

# Print

print("The average running time for Selection Sort is: {:.4f} ms".format(avg_time*1000.0))

input()

Related Samples

Dive into our Python Assignments samples, covering loops, functions, data structures, and advanced topics like file handling and API integration. Explore annotated code examples that simplify complex concepts, enhancing your programming skills. Excel in Python with practical assignments tailored to deepen understanding and foster academic success.