Design and Analysis of Algorithms 2015

Total Page:16

File Type:pdf, Size:1020Kb

Design and Analysis of Algorithms 2015 Design and Analysis of Algorithms 2015 DESIGN AND ANALYSIS OF ALGORITHMS UNIT-I ________________________________________________________________________________ INTRODUCTION: Algorithm,pseudocode for expressing algorithms,performance analysis- Time complexity and space complexity, asymptotic noatation- O notation Omega notation and Theta notation and little on notation,probabilistic analysis,amortized complexity. DIVIDE AND CONQUER: General Method, applications-Binary search,merge sort, quick sort, strassen’s matrix multiplication. ___________________________________________________________________________________- P.Harikrishna Assistant Professor CSE Dept MRCET Page 1 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 2 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 3 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 4 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 5 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 6 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 7 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 8 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 9 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 10 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 11 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 12 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 13 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 14 Design and Analysis of Algorithms 2015 Divide and conquer P.Harikrishna Assistant Professor CSE Dept MRCET Page 15 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 16 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 17 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 18 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 19 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 20 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 21 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 22 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 23 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 24 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 25 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 26 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 27 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 28 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 29 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 30 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 31 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 32 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 33 Design and Analysis of Algorithms 2015 Worst case Strassen matrix multiplication P.Harikrishna Assistant Professor CSE Dept MRCET Page 34 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 35 Design and Analysis of Algorithms 2015 P.Harikrishna Assistant Professor CSE Dept MRCET Page 36 Design and2015 analysis of algorithms 2015 UNIT-2 Efficient non recursive tree traversal algorithms Non recursive Inorder traversal algorithm P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 1 Design and2015 analysis of algorithms 2015 Non recursive preorder traversal algorithm Non recursive postorder traversal algorithm P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 2 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 3 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 4 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 5 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 6 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 7 Design and2015 analysis of algorithms 2015 Graph Traversals P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 8 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 9 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 10 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 11 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 12 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 13 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 14 Design and2015 analysis of algorithms 2015 Prims algorithm 1. Start with a tree which contains only one node. 2. Identify a node (outside the tree) which is closest to the tree and add the minimum weight edge from that node to some node in the tree and incorporate the additional node as a part of the tree. 3. If there are less then n – 1 edges in the tree, go to 2 T = a spanning tree containing a single node s; E = set of edges adjacent to s; while T does not contain all the nodes { remove an edge (v, w) of lowest cost from E if w is already in T then discard edge (v, w) else { add edge (v, w) and node w to T add to E the edges adjacent to w } } P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 15 Design and2015 analysis of algorithms 2015 Time complexity is O(n2) time. P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 16 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 17 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 18 Design and2015 analysis of algorithms 2015 return max; P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 19 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 20 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 21 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 22 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 23 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 24 Design and2015 analysis of algorithms 2015 P .HARIKRISHNA Assistant professor CSE Dept MRCET Page 25 Design and analysis of algorithms UNIT-3 UNIT-3 NOTES Greedy method P.Harikrishna Assistant Professor CSE Department MRCET Page 1 Design and analysis of algorithms UNIT-3 P.Harikrishna Assistant Professor CSE Department MRCET Page 2 Design and analysis of algorithms UNIT-3 P.Harikrishna Assistant Professor CSE Department MRCET Page 3 Design and analysis of algorithms UNIT-3 Time complexity is P.Harikrishna Assistant Professor CSE Department MRCET Page 4 Design and analysis of algorithms UNIT-3 P.Harikrishna Assistant Professor CSE Department MRCET Page 5 Design and analysis of algorithms UNIT-3 P.Harikrishna Assistant Professor CSE Department MRCET Page 6 Design and analysis of algorithms UNIT-3 P.Harikrishna Assistant Professor CSE Department MRCET Page 7 Design and analysis of algorithms UNIT-3 Algorithm: Time complexity is O(n). P.Harikrishna Assistant Professor CSE Department MRCET Page 8 Design and analysis of algorithms UNIT-3 Minimum weight is 7 P.Harikrishna Assistant Professor CSE Department MRCET Page 9 Design and analysis of algorithms UNIT-3 Prims algorithm Time complexity= n=number of nodes P.Harikrishna Assistant Professor CSE Department MRCET Page 10 Design and analysis of algorithms UNIT-3 P.Harikrishna Assistant Professor CSE Department MRCET Page 11 Design and analysis of algorithms UNIT-3 P.Harikrishna Assistant Professor CSE Department MRCET Page 12 Design and analysis of algorithms UNIT-3 Cost=14 P.Harikrishna Assistant Professor CSE Department MRCET Page 13 Design and analysis of algorithms UNIT-3 Cost=17 P.Harikrishna Assistant Professor CSE Department MRCET Page 14 Design and analysis of algorithms UNIT-3 Kruskal algorithm P.Harikrishna Assistant Professor CSE Department MRCET Page 15 Design and analysis of algorithms UNIT-3 Time complexity=O(E log V) E is total number of edges. V=total number of vertices. n=number of nodes P.Harikrishna Assistant Professor CSE Department MRCET Page 16 Design and analysis of algorithms UNIT-3 P.Harikrishna Assistant Professor CSE Department MRCET Page 17 Design and analysis of algorithms UNIT-3 P.Harikrishna Assistant Professor CSE Department
Recommended publications
  • Graph Traversals
    Graph Traversals CS200 - Graphs 1 Tree traversal reminder Pre order A A B D G H C E F I In order B C G D H B A E C F I Post order D E F G H D B E I F C A Level order G H I A B C D E F G H I Connected Components n The connected component of a node s is the largest set of nodes reachable from s. A generic algorithm for creating connected component(s): R = {s} while ∃edge(u, v) : u ∈ R∧v ∉ R add v to R n Upon termination, R is the connected component containing s. q Breadth First Search (BFS): explore in order of distance from s. q Depth First Search (DFS): explores edges from the most recently discovered node; backtracks when reaching a dead- end. 3 Graph Traversals – Depth First Search n Depth First Search starting at u DFS(u): mark u as visited and add u to R for each edge (u,v) : if v is not marked visited : DFS(v) CS200 - Graphs 4 Depth First Search A B C D E F G H I J K L M N O P CS200 - Graphs 5 Question n What determines the order in which DFS visits nodes? n The order in which a node picks its outgoing edges CS200 - Graphs 6 DepthGraph Traversalfirst search algorithm Depth First Search (DFS) dfs(in v:Vertex) mark v as visited for (each unvisited vertex u adjacent to v) dfs(u) n Need to track visited nodes n Order of visiting nodes is not completely specified q if nodes have priority, then the order may become deterministic for (each unvisited vertex u adjacent to v in priority order) n DFS applies to both directed and undirected graphs n Which graph implementation is suitable? CS200 - Graphs 7 Iterative DFS: explicit Stack dfs(in v:Vertex) s – stack for keeping track of active vertices s.push(v) mark v as visited while (!s.isEmpty()) { if (no unvisited vertices adjacent to the vertex on top of the stack) { s.pop() //backtrack else { select unvisited vertex u adjacent to vertex on top of the stack s.push(u) mark u as visited } } CS200 - Graphs 8 Breadth First Search (BFS) n Is like level order in trees A B C D n Which is a BFS traversal starting E F G H from A? A.
    [Show full text]
  • Lecture12: Trees II Tree Traversal Preorder Traversal Preorder Traversal
    Tree Traversal • Process of visiting nodes in a tree systematically CSED233: Data Structures (2013F) . Some algorithms need to visit all nodes in a tree. Example: printing, counting nodes, etc. Lecture12: Trees II • Implementation . Can be done easily by recursion Computers”R”Us . Order of visits does matter. Bohyung Han Sales Manufacturing R&D CSE, POSTECH [email protected] US International Laptops Desktops Europe Asia Canada CSED233: Data Structures 2 by Prof. Bohyung Han, Fall 2013 Preorder Traversal Preorder Traversal • A preorder traversal of the subtree rooted at node n: . Visit node n (process the node's data). 1 . Recursively perform a preorder traversal of the left child. Recursively perform a preorder traversal of the right child. 2 7 • A preorder traversal starts at the root. public void preOrderTraversal(Node n) 3 6 8 12 { if (n == null) return; 4 5 9 System.out.print(n.value+" "); preOrderTraversal(n.left); preOrderTraversal(n.right); 10 11 } CSED233: Data Structures CSED233: Data Structures 3 by Prof. Bohyung Han, Fall 2013 4 by Prof. Bohyung Han, Fall 2013 Inorder Traversal Inorder Traversal • A preorder traversal of the subtree rooted at node n: . Recursively perform a preorder traversal of the left child. 6 . Visit node n (process the node's data). Recursively perform a preorder traversal of the right child. 4 11 • An iorder traversal starts at the root. public void inOrderTraversal(Node n) 2 5 7 12 { if (n == null) return; 1 3 9 inOrderTraversal(n.left); System.out.print(n.value+" "); inOrderTraversal(n.right); } 8 10 CSED233: Data Structures CSED233: Data Structures 5 by Prof.
    [Show full text]
  • Efficient Stackless Hierarchy Traversal on Gpus with Backtracking in Constant Time
    High Performance Graphics (2016) Ulf Assarsson and Warren Hunt (Editors) Efficient Stackless Hierarchy Traversal on GPUs with Backtracking in Constant Time Nikolaus Binder† and Alexander Keller‡ NVIDIA Corporation 1 1 1 2 3 2 3 2 3 4 5 6 7 4 5 6 7 4 5 6 7 10 11 10 11 10 11 22 23 22 23 22 23 a) b) c) 44 45 44 45 44 45 Figure 1: Backtracking from the current node with key 22 to the next node with key 3, which has been postponed most recently, by a) iterating along parent and sibling references, b) using references to uncle and grand uncle, c) using a stack, or as we propose, a perfect hash directly mapping the key for the next node to its address without using a stack. The heat maps visualize the reduction in the number of backtracking steps. Abstract The fastest acceleration schemes for ray tracing rely on traversing a bounding volume hierarchy (BVH) for efficient culling and use backtracking, which in the worst case may expose cost proportional to the depth of the hierarchy in either time or state memory. We show that the next node in such a traversal actually can be determined in constant time and state memory. In fact, our newly proposed parallel software implementation requires only a few modifications of existing traversal methods and outperforms the fastest stack-based algorithms on GPUs. In addition, it reduces memory access during traversal, making it a very attractive building block for ray tracing hardware. Categories and Subject Descriptors (according to ACM CCS): I.3.3 [Computer Graphics]: Picture/Image Generation—Ray Trac- ing 1.
    [Show full text]
  • MA/CSSE 473 Day 15
    MA/CSSE 473 Day 15 BFS Topological Sort Combinatorial Object Generation MA/CSSE 473 Day 15 • HW 6 due tomorrow, HW 7 Friday, Exam next Tuesday • HW 8 has been updated for this term. Due Oct 8 • ConvexHull implementation problem due Day 27 (Oct 21); assignment is available now – Individual assignment (I changed my mind, but I am giving you 3.5 weeks to do it) • Schedule page now has my projected dates for all remaining reading assignments and written assignments – Topics for future class days and details of assignments 9-17 still need to be updated for this term • Student Questions • DFS and BFS • Topological Sort • Combinatorial Object Generation - Intro Q1 1 Recap: Pseudocode for DFS Graph may not be connected, so we loop. Backtracking happens when this loop ends (no more unmarked neighbors) Analysis? Q2 Notes on DFS • DFS can be implemented with graphs represented as: – adjacency matrix: Θ(|V| 2) – adjacency list: Θ(| V|+|E|) • Yields two distinct ordering of vertices: – order in which vertices are first encountered (pushed onto stack) – order in which vertices become dead-ends (popped off stack) • Applications: – check connectivity, finding connected components – Is this graph acyclic? – finding articulation points, if any (advanced) – searching the state-space of problem for (optimal) solution (AI) Q3 2 Breadth-first search (BFS) • Visits graph vertices by moving across to all the neighbors of last visited vertex. Vertices closer to the start are visited early • Instead of a stack, BFS uses a queue • Level-order tree traversal is
    [Show full text]
  • Discrete Mathematics and Its Applications Seventh Edition
    Discrete Mathematics and Its Applications Seventh Edition Kenneth H. Rosen Monmouth University (and.formerly AT&T Laboratories) � onnect Learn •� Succeed" The McGraw·Hi/1 Companies ��onnect Learn a_,Succeed· DISCRETE MATHEMATICS AND ITS APPLICATIONS, SEVENTH EDITION Published by McGraw-Hill, a business unit of The McGraw-Hill Companies, Inc., 1221 Avenue of the Americas, New York, NY 10020. Copyright© 2012 by The McGraw-Hill Companies, Inc. All rights reserved. Previous editions © 2007, 2003, and 1999. No part of this publication may be reproduced or distributed in any form or by any means, or stored in a database or retrieval system, without the prior written consent of The McGraw-Hill Companies, Inc., including, but not limited to, in any network or other electronic storage or transmission, or broadcast for distance learning. Some ancillaries, including electronic and print components, may not be available to customers outside the United States. This book is printed on acid-free paper. 1234567890DOW/DOW 10987654 321 ISBN 978-0-07-338309-5 0-07-338309-0 MHID Vice President & Editor-in- Chief: Marty Lange Editorial Director: Michael Lange Global Publisher: Raghothaman Srinivasan Executive Editor: Bill Stenquist Development Editors: LorraineK. Buczek/Rose Kernan Senior Marketing Manager: Curt Reynolds Project Manager: Robin A. Reed Buyer: Sandy Ludovissy Design Coordinator: Brenda A. Rolwes Cover painting: Jasper Johns, Between the Clock and the Bed, 1981. Oil on Canvas (72 x 126 I /4 inches) Collection of the artist. Photograph by Glenn Stiegelman. Cover Art© Jasper Johns/Licensed by VAGA, New York, NY Cover Designer: Studio Montage, St. Louis, Missouri Lead Photo Research Coordinator: Carrie K.
    [Show full text]
  • Trees Assignment #4
    Trees Assignment #4 Tuesday, February 16: Read Rosen and Write Essay Sections 9.6, 9.7, 9.8 -- Pages 647-672 Thursday, February 18: Read Rosen and Write Essay Section 10.1, 10.2, 10.3 -- Pages 683-722 Assignment #4 Homework Exercises Section 9.1: Problem 31 Section 9.2: Problems 18, 28 Section 9.3: Problems 30, 31 Section 9.4: Problems 54, 55 Section 9.5: Problems 10, 26, 27, 46, 54 Extra Credit Problem: See Comp 280 web page Motivation for Trees Many, Many Applications Fundamental Data Structure Neat Algorithms Simpler than Graphs Examples and Animations http://oneweb.utc.edu/~Christopher-Mawata/petersen/ Definitions Tree • Connected graph with no simple circuits. • Graph with a unique path between any two vertices. Rooted Tree • Explicit Definition -- A tree with one vertex called the root • Recursive Definition -- A single vertex r is a rooted tree with root r. -- If T1, …, Tn are rooted trees with roots r1, …, rn and r is a new vertex, then the graph with edges joining r to r1, …, rn is a rooted tree with root r. Counting Theorems Theorem 1: e = v −1 Proof: By induction on the number of vertices. (Inductive Step: Remove a leaf.) Theorem 2: # leaves ≤ mheight (m-ary trees) Proof: By induction on the height of the tree. (Inductive Step: Remove the root.) Theorem 3: height ≥ logm (#leaves) Proof: This result is just a restatement of Theorem 2. Standard Terminology Nodes Trees Ancestor Level Parent Height Child Balanced Sibling N-ary Descendent Binary Leaf -- Left Subtree / Child Internal Vertex (Node) -- Right Subtree / Child Examples
    [Show full text]
  • Traversal of Binary Trees 30 Traversal of Binary Trees 31 Traversals of Binary Trees • Is the Process of Visiting Each Node (Precisely
    Data Structures September 28 1 Hierachical structures: Trees • 2 Objectives Discuss the following topics: • Trees, Binary Trees, and Binary Search Trees • Implementing Binary Trees • Tree Traversal • Searching a Binary Search Tree • Insertion • Deletion 3 Objectives (continued) Discuss the following topics: • Heaps • Balancing a Tree • Self-Adjusting Trees 4 Trees, Binary Trees, and Binary Search Trees • A tree is a data type that consists of nodes and arcs • These trees are depicted upside down with the root at the top and the leaves (terminal nodes ) at the bottom • The root is a node that has no parent; it can have only child nodes • Leaves have no children (their children are null) 5 Trees, Binary Trees, and Binary Search Trees (continued) • Each node has to be reachable from the root through a unique sequence of arcs, called a path • The number of arcs in a path is called the length of the path • The level of a node is the length of the path from the root to the node plus 1, which is the number of nodes in the path • The height of a nonempty tree is the maximum level of a node in the tree 6 Trees, Binary Trees, and Binary Search Trees (continued) Figure 6-1 Examples of trees 7 Trees, Binary Trees, and Binary Search Trees (continued) Figure 6-2 Hierarchical structure of a university shown as a tree 8 Trees: abstract/mathematical important, great number of varieties • terminology (knoop, wortel, vader, kind) node/vertex, root, father/parent, child ) ) ) ) (non) directed (non) orderly adt adt adt adt binary trees (left ≠≠≠ right) full
    [Show full text]
  • Cmsc 132: Object-Oriented Programming Ii
    CMSC 132: OBJECT-ORIENTED PROGRAMMING II Graphs & Graph Traversal Department of Computer Science University of Maryland, College Park © Department of Computer Science UMD Graph Data Structures • Many-to-many relationship between elements • Each element has multiple predecessors • Each element has multiple successors © Department of Computer Science UMD Graph Definitions • Node • Element of graph A • State • List of adjacent/neighbor/successor nodes • Edge • Connection between two nodes • State • Endpoints of edge © Department of Computer Science UMD Graph Definitions • Directed graph • Directed edges • Undirected graph • Undirected edges © Department of Computer Science UMD Graph Definitions • Weighted graph • Weight (cost) associated with each edge © Department of Computer Science UMD Graph Definitions • Path • Sequence of nodes n1, n2, … nk • Edge exists between each pair of nodes ni , ni+1 • Example • A, B, C is a path • A, E, D is not a path © Department of Computer Science UMD Graph Definitions • Cycle • Path that ends back at starting node • Example • A, E, A • A, B, C, D, E, A • Simple path • No cycles in path • Acyclic graph • No cycles in graph • What is an example? © Department of Computer Science UMD Graph Definitions • Connected Graph • Every node in the graph is reachable from every other node in the graph • Unconnected graph • Graph that has several disjoint components Unconnected graph © Department of Computer Science UMD Graph Operations • Traversal (search) • Visit each node in graph exactly once • Usually perform computation
    [Show full text]
  • Trees and Tree Traversal Definition of a Tree
    Trees and Tree Traversal Material adapted – courtesy of Prof. Dave Matuszek at UPENN Definition of a tree A tree is a node with a value and zero or more children Depending on the needs of the program, the children may or may not be ordered A tree has a root, internal nodes, and leaves A Each node contains an element and has branches B C D E leading to other nodes (its children) F G H I J K Each node (other than the root) has a parent L M N Each node has a depth (distance from the root) 2 1 More definitions An empty tree has no nodes The descendents of a node are its children and the descendents of its children The ancestors of a node are its parent (if any) and the ancestors of its parent The subtree rooted at a node consists of the given node and all its descendents An ordered tree is one in which the order of the children is important; an unordered tree is one in which the children of a node can be thought of as a set The branching factor of a node is the number of children it has The branching factor of a tree is the average branching factor of its nodes 3 File systems File systems are almost always implemented as a tree structure The nodes in the tree are of (at least) two types: folders (or directories), and plain files A folder typically has children—subfolders and plain files A plain file is typically a leaf 4 2 Family trees It turns out that a tree is not a good way to represent a family tree Every child has two parents, a mother and a father Parents frequently remarry An “upside down” binary tree almost works
    [Show full text]
  • Modern B-Tree Techniques Contents
    Foundations and TrendsR in Databases Vol. 3, No. 4 (2010) 203–402 c 2011 G. Graefe DOI: 10.1561/1900000028 Modern B-Tree Techniques By Goetz Graefe Contents 1 Introduction 204 1.1 Perspectives on B-trees 204 1.2 Purpose and Scope 206 1.3 New Hardware 207 1.4 Overview 208 2 Basic Techniques 210 2.1 Data Structures 213 2.2 Sizes, Tree Height, etc. 215 2.3 Algorithms 216 2.4 B-trees in Databases 221 2.5 B-trees Versus Hash Indexes 226 2.6 Summary 230 3 Data Structures and Algorithms 231 3.1 Node Size 232 3.2 Interpolation Search 233 3.3 Variable-length Records 235 3.4 Normalized Keys 237 3.5 Prefix B-trees 239 3.6 CPU Caches 244 3.7 Duplicate Key Values 246 3.8 Bitmap Indexes 249 3.9 Data Compression 253 3.10 Space Management 256 3.11 Splitting Nodes 258 3.12 Summary 259 4 Transactional Techniques 260 4.1 Latching and Locking 265 4.2 Ghost Records 268 4.3 Key Range Locking 273 4.4 Key Range Locking at Leaf Boundaries 280 4.5 Key Range Locking of Separator Keys 282 4.6 Blink-trees 283 4.7 Latches During Lock Acquisition 286 4.8 Latch Coupling 288 4.9 Physiological Logging 289 4.10 Non-logged Page Operations 293 4.11 Non-logged Index Creation 295 4.12 Online Index Operations 296 4.13 Transaction Isolation Levels 300 4.14 Summary 304 5 Query Processing 305 5.1 Disk-order Scans 309 5.2 Fetching Rows 312 5.3 Covering Indexes 313 5.4 Index-to-index Navigation 317 5.5 Exploiting Key Prefixes 324 5.6 Ordered Retrieval 327 5.7 Multiple Indexes for a Single Table 329 5.8 Multiple Tables in a Single Index 333 5.9 Nested Queries and Nested Iteration 334
    [Show full text]
  • Adapting Tree Structures for Processing with SIMD Instructions
    Adapting Tree Structures for Processing with SIMD Instructions Steffen Zeuch Frank Huber⇤ Johann-Christoph Freytag Humboldt-Universität zu Berlin {zeuchste,huber,freytag}@informatik.hu-berlin.de ABSTRACT and the kind of data each node stores. The most widely + + In this paper, we accelerate the processing of tree-based in- used variant of the B-Tree is the B -Tree. The B -Tree dex structures by using SIMD instructions. We adapt the distinguishes between leaf and branching nodes. While leaf B+-Tree and prefix B-Tree (trie) by changing the search al- nodes store data items to form a so-called sequence set [8], gorithm on inner nodes from binary search to k-ary search. branching nodes are used for pathfinding based on stored The k-ary search enables the use of SIMD instructions, which key values. Thus, each node is either used for navigation or for storing data items, but not for both purposes like in are commonly available on most modern processors today. + The main challenge for using SIMD instructions on CPUs the original B-Tree. One major advantage of the B -Tree is their inherent requirement for consecutive memory loads. is its ability to speedup sequential processing by linking leaf The data for one SIMD load instruction must be located nodes to support range queries. in consecutive memory locations and cannot be scattered As a variant of the original B-Tree, Bayer et al. intro- over the entire memory. The original layout of tree-based duced the prefix B-Tree (trie) [4], also called digital search index structures does not satisfy this constraint and must tree.
    [Show full text]
  • Parallel Alpha-Beta Algorithm on the GPU
    Journal of Computing and Information Technology - CIT 19, 2011, 4, 269–274 269 doi:10.2498/cit.1002029 Parallel Alpha-Beta Algorithm on the GPU Damjan Strnad and Nikola Guid Faculty of Electrical Engineering and Computer Science, University of Maribor, Slovenia In the paper we present the parallel implementation of the laptops. They feature hardware accelerated alpha-beta algorithm running on the graphics processing scheduling of thousands of lightweight threads unit (GPU). We compare the speed of the parallel player with the standard serial one using the game of reversi running on a number of streaming multiproces- with boards of different sizes. We show that for small sors, resembling in operation the SIMD (single boards the level of available parallelism is insufficient for instruction multiple data) machines. In recent efficient GPU utilization, but for larger boards substan- years, the parallel architecture of the GPU has tial speed-ups can be achieved on the GPU. The results indicate that the GPU-based alpha-beta implementation become available for general purpose program- would be advantageous for similar games of higher com- ming not related to graphics rendering. This putational complexity (e.g. hex and go) in their standard was facilitated by the emergence of specialized form. toolkits like C for CUDA [16] and OpenCL [8] Keywords: alpha-beta, reversi, GPU, CUDA, paralleliza- which propelled the successful parallelization tion of many compute intensive tasks [15]. Our goal with the GPU-based alpha-beta imple- mentation is to compare its speed of play against 1. Introduction the basic serial version of the algorithm. The game of reversi (also known as Othello) serves as a testing ground for comparison, where dif- The alpha-beta algorithm is central to most en- ferent board sizes are used to vary the com- gines for playing the two player zero-sum per- [ ] plexity of the game.
    [Show full text]