Computational Complexity, Choosing Data Structures Svetlin Nakov Telerik Corporation www.telerik.com.

Slides:



Advertisements
Similar presentations
Computational Complexity, Choosing Data Structures Svetlin Nakov Telerik Corporation
Advertisements

HST 952 Computing for Biomedical Scientists Lecture 10.
Computational Complexity 1. Time Complexity 2. Space Complexity.
Fall 2006CENG 7071 Algorithm Analysis. Fall 2006CENG 7072 Algorithmic Performance There are two aspects of algorithmic performance: Time Instructions.
Chapter 10 Algorithm Efficiency
Complexity Analysis (Part I)
Analysis of Algorithms (Chapter 4)
Cmpt-225 Algorithm Efficiency.
Concept of Basic Time Complexity Problem size (Input size) Time complexity analysis.
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Chapter 23 Algorithm Efficiency.
Analysis of Algorithms 7/2/2015CS202 - Fundamentals of Computer Science II1.
Analysis of Algorithm.
Elementary Data Structures and Algorithms
Chapter 1 Introduction Definition of Algorithm An algorithm is a finite sequence of precise instructions for performing a computation or for solving.
Design and Analysis of Algorithms Chapter Analysis of Algorithms Dr. Ying Lu August 28, 2012
Analysis of Algorithms Spring 2015CS202 - Fundamentals of Computer Science II1.
Abstract Data Types (ADTs) Data Structures The Java Collections API
Algorithm Analysis (Big O)
Overview of Data Structures and Basic Algorithms. Computational Complexity. Asymptotic Notation Svetlin Nakov Telerik Software Academy academy.telerik.com.
COMP s1 Computing 2 Complexity
Analysis of Performance
Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved Chapter 23 Algorithm Efficiency.
Comp 249 Programming Methodology Chapter 15 Linked Data Structure - Part B Dr. Aiman Hanna Department of Computer Science & Software Engineering Concordia.
Program Performance & Asymptotic Notations CSE, POSTECH.
Chapter 2.6 Comparison of Algorithms modified from Clifford A. Shaffer and George Bebis.
Week 2 CS 361: Advanced Data Structures and Algorithms
1 Chapter 24 Developing Efficient Algorithms. 2 Executing Time Suppose two algorithms perform the same task such as search (linear search vs. binary search)
Lecture 2 Computational Complexity
Mathematics Review and Asymptotic Notation
Dictionaries, Hash Tables, Hashing, Collisions, Sets Svetlin Nakov Telerik Software Academy academy.telerik.com Technical Trainer
2.1 Computational Tractability
Unit III : Introduction To Data Structures and Analysis Of Algorithm 10/8/ Objective : 1.To understand primitive storage structures and types 2.To.
Design and Analysis of Algorithms - Chapter 21 Analysis of Algorithms b Issues: CorrectnessCorrectness Time efficiencyTime efficiency Space efficiencySpace.
Analysis of Algorithms
© 2011 Pearson Addison-Wesley. All rights reserved 10 A-1 Chapter 10 Algorithm Efficiency and Sorting.
Analysis of Algorithms These slides are a modified version of the slides used by Prof. Eltabakh in his offering of CS2223 in D term 2013.
Week 12 - Wednesday.  What did we talk about last time?  Asymptotic notation.
Algorithm Analysis (Algorithm Complexity). Correctness is Not Enough It isn’t sufficient that our algorithms perform the required tasks. We want them.
Program Efficiency & Complexity Analysis. Algorithm Review An algorithm is a definite procedure for solving a problem in finite number of steps Algorithm.
Data Structure Introduction.
Java Methods Big-O Analysis of Algorithms Object-Oriented Programming
Computational Complexity of Fundamental Data Structures, Choosing a Data Structure.
Sorting.
Dictionaries, Hash Tables, Collisions Resolution, Sets Svetlin Nakov Telerik Corporation
Algorithm Analysis (Big O)
E.G.M. PetrakisAlgorithm Analysis1  Algorithms that are equally correct can vary in their utilization of computational resources  time and memory  a.
SoftUni Team Technical Trainers Software University Data Structures, Algorithms and Complexity Analyzing Algorithm Complexity. Asymptotic.
BITS Pilani Pilani Campus Data Structure and Algorithms Design Dr. Maheswari Karthikeyan Lecture1.
Announcement We will have a 10 minutes Quiz on Feb. 4 at the end of the lecture. The quiz is about Big O notation. The weight of this quiz is 3% (please.
Analysis of Algorithms Spring 2016CS202 - Fundamentals of Computer Science II1.
GC 211:Data Structures Week 2: Algorithm Analysis Tools Slides are borrowed from Mr. Mohammad Alqahtani.
LECTURE 2 : fundamentals of analysis of algorithm efficiency Introduction to design and analysis algorithm 1.
Algorithmic Foundations COMP108 COMP108 Algorithmic Foundations Algorithm efficiency Prudence Wong.
Computational Complexity, Choosing Data Structures Svetlin Nakov Telerik Software Academy Manager Technical Trainer
Algorithmic Foundations COMP108 COMP108 Algorithmic Foundations Algorithm efficiency Prudence Wong
Data Structures I (CPCS-204) Week # 2: Algorithm Analysis tools Dr. Omar Batarfi Dr. Yahya Dahab Dr. Imtiaz Khan.
Algorithm Analysis 1.
Analysis of Algorithms
GC 211:Data Structures Week 2: Algorithm Analysis Tools
GC 211:Data Structures Algorithm Analysis Tools
Complexity Analysis.
Algorithms Complexity and Data Structures Efficiency
Building Java Programs
GC 211:Data Structures Algorithm Analysis Tools
Analysis of Algorithms
Chapter 2.
GC 211:Data Structures Algorithm Analysis Tools
At the end of this session, learner will be able to:
Analysis of Algorithms
Presentation transcript:

Computational Complexity, Choosing Data Structures Svetlin Nakov Telerik Corporation

1. Algorithms Complexity and Asymptotic Notation  Time and Memory Complexity  Mean, Average and Worst Case 2. Fundamental Data Structures – Comparison  Arrays vs. Lists vs. Trees vs. Hash-Tables 3. Choosing Proper Data Structure 2

 Data structures and algorithms are the foundation of computer programming  Algorithmic thinking, problem solving and data structures are vital for software engineers  All.NET developers should know when to use T[], LinkedList, List, Stack, Queue, Dictionary, HashSet, SortedDictionary and SortedSet  All.NET developers should know when to use T[], LinkedList, List, Stack, Queue, Dictionary, HashSet, SortedDictionary and SortedSet  Computational complexity is important for algorithm design and efficient programming 3

Asymtotic Notation

 Why we should analyze algorithms?  Predict the resources that the algorithm requires  Computational time (CPU consumption)  Memory space (RAM consumption)  Communication bandwidth consumption  The running time of an algorithm is:  The total number of primitive operations executed (machine independent steps)  Also known as algorithm complexity 5

 What to measure?  Memory  Time  Number of steps  Number of particular operations  Number of disk operations  Number of network packets  Asymptotic complexity 6

 Worst-case  An upper bound on the running time for any input of given size  Average-case  Assume all inputs of a given size are equally likely  Best-case  The lower bound on the running time 7

 Sequential search in a list of size n  Worst-case:  n comparisons  Best-case:  1 comparison  Average-case:  n/2 comparisons  The algorithm runs in linear time  Linear number of operations …………………n 8

 Algorithm complexity is rough estimation of the number of steps performed by given computation depending on the size of the input data  Measured through asymptotic notation  O(g) where g is a function of the input data size  Examples:  Linear complexity O(n) – all elements are processed once (or constant number of times)  Quadratic complexity O(n 2 ) – each of the elements is processed n times 9

 Asymptotic upper bound  O-notation (Big O notation)  For given function g(n), we denote by O(g(n)) the set of functions that are different than g(n) by a constant  Examples:  3 * n 2 + n/ ∈ O(n 2 )  4*n*log 2 (3*n+1) + 2*n-1 ∈ O(n * log n) O(g(n)) = { f(n) : there exist positive constants c and n 0 such that f(n) = n 0 } 10

11ComplexityNotationDescriptionconstantO(1) Constant number of operations, not depending on the input data size, e.g. n =  1-2 operations logarithmic O(log n) Number of operations propor- tional of log 2 (n) where n is the size of the input data, e.g. n =  30 operations linearO(n) Number of operations proportional to the input data size, e.g. n =  operations

12ComplexityNotationDescriptionquadratic O(n 2 ) Number of operations proportional to the square of the size of the input data, e.g. n = 500  operations cubic O(n 3 ) Number of operations propor- tional to the cube of the size of the input data, e.g. n = 200  operations exponential O(2 n ), O(k n ), O(n!) Exponential number of operations, fast growing, e.g. n = 20  operations

13Complexity O(1) < 1 s O(log(n)) O(n) O(n*log(n)) O(n 2 ) < 1 s 2 s2 s2 s2 s min O(n 3 ) < 1 s 20 s 5 hours 231 days O(2 n ) < 1 s 260 days hangshangshangshangs O(n!) < 1 s hangshangshangshangshangshangs O(n n ) min hangshangshangshangshangshangs

 Complexity can be expressed as formula on multiple variables, e.g.  Algorithm filling a matrix of size n * m with natural numbers 1, 2, … will run in O(n*m)  DFS traversal of graph with n vertices and m edges will run in O(n + m)  Memory consumption should also be considered, for example:  Running time O(n), memory requirement O(n 2 )  n =  OutOfMemoryException 14

 A polynomial-time algorithm is one whose worst-case time complexity is bounded above by a polynomial function of its input size  Example of worst-case time complexity  Polynomial-time: log n, 2n, 3n 3 + 4n, 2 * n log n  Non polynomial-time : 2 n, 3 n, n k, n!  Non-polynomial algorithms don't work for large input data sets W(n) O(p(n)) W(n) ∈ O(p(n)) 15

Examples

 Runs in O(n) where n is the size of the array  The number of elementary steps is ~ n int FindMaxElement(int[] array) { int max = array[0]; int max = array[0]; for (int i=0; i<array.length; i++) for (int i=0; i<array.length; i++) { if (array[i] > max) if (array[i] > max) { max = array[i]; max = array[i]; } } return max; return max;}

 Runs in O(n 2 ) where n is the size of the array  The number of elementary steps is ~ n*(n+1) / 2 long FindInversions(int[] array) { long inversions = 0; long inversions = 0; for (int i=0; i<array.Length; i++) for (int i=0; i<array.Length; i++) for (int j = i+1; j<array.Length; i++) for (int j = i+1; j<array.Length; i++) if (array[i] > array[j]) if (array[i] > array[j]) inversions++; inversions++; return inversions; return inversions;}

 Runs in cubic time O(n 3 )  The number of elementary steps is ~ n 3 decimal Sum3(int n) { decimal sum = 0; decimal sum = 0; for (int a=0; a<n; a++) for (int a=0; a<n; a++) for (int b=0; b<n; b++) for (int b=0; b<n; b++) for (int c=0; c<n; c++) for (int c=0; c<n; c++) sum += a*b*c; sum += a*b*c; return sum; return sum;}

 Runs in quadratic time O(n*m)  The number of elementary steps is ~ n*m long SumMN(int n, int m) { long sum = 0; long sum = 0; for (int x=0; x<n; x++) for (int x=0; x<n; x++) for (int y=0; y<m; y++) for (int y=0; y<m; y++) sum += x*y; sum += x*y; return sum; return sum;}

 Runs in quadratic time O(n*m)  The number of elementary steps is ~ n*m + min(m,n)*n long SumMN(int n, int m) { long sum = 0; long sum = 0; for (int x=0; x<n; x++) for (int x=0; x<n; x++) for (int y=0; y<m; y++) for (int y=0; y<m; y++) if (x==y) if (x==y) for (int i=0; i<n; i++) for (int i=0; i<n; i++) sum += i*x*y; sum += i*x*y; return sum; return sum;}

 Runs in exponential time O(2 n )  The number of elementary steps is ~ 2 n decimal Calculation(int n) { decimal result = 0; decimal result = 0; for (int i = 0; i < (1<<n); i++) for (int i = 0; i < (1<<n); i++) result += i; result += i; return result; return result;}

 Runs in linear time O(n)  The number of elementary steps is ~ n decimal Factorial(int n) { if (n==0) if (n==0) return 1; return 1; else else return n * Factorial(n-1); return n * Factorial(n-1);}

 Runs in exponential time O(2 n )  The number of elementary steps is ~ Fib(n+1) where Fib(k) is the k -th Fibonacci's number decimal Fibonacci(int n) { if (n == 0) if (n == 0) return 1; return 1; else if (n == 1) else if (n == 1) return 1; return 1; else else return Fibonacci(n-1) + Fibonacci(n-2); return Fibonacci(n-1) + Fibonacci(n-2);}

Examples

26 Data Structure AddFindDelete Get-by- index Array ( T[] ) O(n)O(n)O(n)O(1) Linked list ( LinkedList ) O(1)O(n)O(n)O(n) Resizable array list ( List ) O(1)O(n)O(n)O(1) Stack ( Stack ) O(1)-O(1)- Queue ( Queue ) O(1)-O(1)-

27 Data Structure AddFindDelete Get-by- index Hash table ( Dictionary ) O(1)O(1)O(1)- Tree-based dictionary ( Sorted Dictionary ) O(log n) - Hash table based set ( HashSet ) O(1)O(1)O(1)- Tree based set ( SortedSet ) O(log n) -

 Arrays ( T[] )  Use when fixed number of elements should be processed by index  Resizable array lists ( List )  Use when elements should be added and processed by index  Linked lists ( LinkedList )  Use when elements should be added at the both sides of the list  Otherwise use resizable array list ( List ) 28

 Stacks ( Stack )  Use to implement LIFO (last-in-first-out) behavior  List could also work well  Queues ( Queue )  Use to implement FIFO (first-in-first-out) behavior  LinkedList could also work well  Hash table based dictionary ( Dictionary )  Use when key-value pairs should be added fast and searched fast by key  Elements in a hash table have no particular order 29

 Balanced search tree based dictionary ( SortedDictionary )  Use when key-value pairs should be added fast, searched fast by key and enumerated sorted by key  Hash table based set ( HashSet )  Use to keep a group of unique values, to add and check belonging to the set fast  Elements are in no particular order  Search tree based set ( SortedSet )  Use to keep a group of ordered unique values 30

 Algorithm complexity is rough estimation of the number of steps performed by given computation  Complexity can be logarithmic, linear, n log n, square, cubic, exponential, etc.  Allows to estimating the speed of given code before its execution  Different data structures have different efficiency on different operations  The fastest add / find / delete structure is the hash table – O(1) for all these operations 31

Questions?

1. A text file students.txt holds information about students and their courses in the following format: Using SortedDictionary print the courses in alphabetical order and for each of them prints the students ordered by family and then by name: 33 Kiril | Ivanov | C# Stefka | Nikolova | SQL Stela | Mineva | Java Milena | Petrova | C# Ivan | Grigorov | C# Ivan | Kolev | SQL C#: Ivan Grigorov, Kiril Ivanov, Milena Petrova Java: Stela Mineva SQL: Ivan Kolev, Stefka Nikolova

2. A large trade company has millions of articles, each described by barcode, vendor, title and price. Implement a data structure to store them that allows fast retrieval of all articles in given price range [x…y]. Hint: use OrderedMultiDictionary from Wintellect's Power Collections for.NET. Wintellect's Power Collections for.NET.Wintellect's Power Collections for.NET. 3. Implement a data structure PriorityQueue that provides a fast way to execute the following operations: add element; extract the smallest element. 4. Implement a class BiDictionary that allows adding triples {key1, key2, value} and fast search by key1, key2 or by both key1 and key2. Note: multiple values can be stored for given key. 34

5. A text file phones.txt holds information about people, their town and phone number: Duplicates can occur in people names, towns and phone numbers. Write a program to execute a sequence of commands from a file commands.txt :  find(name) – display all matching records by given name (first, middle, last or nickname)  find(name, town) – display all matching records by given name and town 35 Mimi Shmatkata | Plovdiv | Kireto | Varna | Daniela Ivanova Petrova | Karnobat | Bat Gancho | Sofia |