data structures lecture 1: introduction. course contents data types overview, introductory...

16
Data Structures Lecture 1: Introduction

Upload: arron-henry

Post on 04-Jan-2016

219 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Data Structures

Lecture 1: Introduction

Page 2: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Course Contents

Data Types Overview, Introductory concepts Data Types, meaning and implementation Abstract data types (ADT) Arrays (revisited) Structures

Linked Lists Stacks (recursion) Queues Trees (traversals, implementation)

Page 3: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Course Contents

Binary Trees Indexing Methods

Hashing

Binary Search Trees Balanced Search Trees

(AVL Tree) Adelson-Velskii-LandisAdelson-Velskii-Landis

Heaps Splay Trees Graphs, adjacency matrices and lists

Page 4: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Text book

““Data structures using C and C++”, Yedidyah Data structures using C and C++”, Yedidyah Langsam, Moshe J Augenstein and Aaron M. Langsam, Moshe J Augenstein and Aaron M. Tenenbaum, 2 ed, 2002Tenenbaum, 2 ed, 2002

Reference Books:• D. Wood: “Data structures, algorithms and performance”,

Addison-Wesley, 1993

• C++ Data Structures by Nell Dale and David Teague

• http://www.brpreiss.com/books/opus4/html/book.html

• Any other book on Data Structures

Page 5: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Lets start the course!

Page 6: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Why Study?

Designed to develop students understanding the impact of structuring data to achieve efficiency of a solution to a problem

After completion you will be familiar with important and most often used data structuring techniques.

It will enable you to understand the manner in which data is organized and presented later.

Page 7: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Objectives of the course

Present in a systematic fashion the most commonly used data structures, emphasizing their abstract properties.

Discuss typical algorithms that operate each kind of data structure, and analyze their performance.

Compare different Data Structures for solving the same problem, and choose the best

Page 8: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Abstract Data Type ADT

A data type whose properties (domain and operations) are specified independently of any particular implementation

ADT is a mathematical model which gives the a set of utilities available to the user but never states the details of its implementation.

In OO-Programming a Class is an ADT

Page 9: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Data Structures: Definition

A collection of data elements whose organization is characterized by accessing operations that are used to store and retrieve the individual data elements;

The logical arrangement of data as used by a system for data management; a representation of a data model in computer form

Page 10: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Data Structures: More specifically

A data structure is a way of grouping fundamental types (like integers, floating point numbers, and arrays) into a bundle that represents some identifiable thing. For example, a matrix may be thought of as the bundle of

the number of rows and columns, and the array of values of the elements of the matrix. This information must be known in order to manipulate the matrix.

C introduced the struct for declaring and manipulating data structures. C++ extended the struct to a class

Page 11: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Goals of Data structures

Identify and develop useful mathematical entities and operations and to determine what classes of problems can be solved by using these entities and operations.

Determine representation of those abstract entities and to implement the abstract operation on these concrete representations.

Page 12: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

A Real Life Example Lisa Michele John 110 622-9823 112-4433 75 Bronson Paola

Electronic Phone BookContains different DATA:

- names- phone number- addresses

Need to perform certain OPERATIONS:- add- delete- look for a phone number- look for an address

How to organize the data so to optimize the efficiency of the operations

Page 13: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

The first Data Structure

An Array!

Page 14: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Word about Arrays!

Lets Get Started:

Arrays are data structures Finite Contiguous Fast Direct Access All elements of same data type

(Can be based upon primitive or ADT) Insertion / Deletion ??? HOW??

Page 15: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Arrays

How to Input arrays How to process arrays How to insert an item in an array How to delete an item from an array How to pass an array

Page 16: Data Structures Lecture 1: Introduction. Course Contents Data Types   Overview, Introductory concepts   Data Types, meaning and implementation

Array

22 33 77 88

How to add 4

22 33 44 77 88

How to add 1 in the array?Not possible