CSci 271 Lecture Notes

Week Four, Wednesday: Algorithms and their Complexity

Introduction

Definition 1: An algorithm is a definite procedure for solving a problem using a finite number of steps.

Example 1: Find the largest element in a sequence of integers.

Example 2: Show that Algorithm 1 has the all the properties:

Does the bogo sort have these properties?

Searching Algorithms

Linear search (algorithm 2)

Binary search: split a sorted list in half, determine which half the target is in, and repeat.

Example 3: binary search.

Algorithm 3: binary search.

Complexity

Computational complexity: time and space.

Example 1: Describe the time complexity of Algorithm 1 (finding the max) of section 2.1.

Example 2: Describe the time complexity of the linear search algorithm.

Example 3: Describe the time complexity of the binary search algorithm.

Example 4: Describe the average-case performance for the linear search algorithm.

Homework Assignment

Assigned Wednesday, September 30, due Wednesday, October 7, at beginning of class.

Chapter 1.8: 6, 20.
Chapter 2.1: 4
Chapter 2.2: 2, 10.


This page established September 28, 1998; last updated September 28, 1998.