Applications of Tree Data Structure | Programming and Data Structures - Computer Science Engineering (CSE) PDF Download

Applications of Tree Data Structure | Programming and Data Structures - Computer Science Engineering (CSE)

Why Tree?

Unlike Array and Linked List, which are linear data structures, tree is hierarchical (or non-linear) data structure.

  1. One reason to use trees might be because you want to store information that naturally forms a hierarchy. For example, the file system on a computer:
    File system
    ———–
    Applications of Tree Data Structure | Programming and Data Structures - Computer Science Engineering (CSE)
  2. If we organize keys in form of a tree (with some ordering e.g., BST), we can search for a given key in moderate time (quicker than Linked List and slower than arrays). Self-balancing search trees like AVL and Red-Black trees guarantee an upper bound of O(Logn) for search.
  3. We can insert/delete keys in moderate time (quicker than Arrays and slower than Unordered Linked Lists). Self-balancing search trees like AVL and Red-Black trees guarantee an upper bound of O(Logn) for insertion/deletion.
  4. Like Linked Lists and unlike Arrays, Pointer implementation of trees don’t have an upper limit on number of nodes as nodes are linked using pointers.

Other Applications

  1. Store hierarchical data, like folder structure, organization structure, XML/HTML data.
  2. Binary Search Tree is a tree that allows fast search, insert, delete on a sorted data. It also allows finding closest item
  3. Heap is a tree data structure which is implemented using arrays and used to implement priority queues.
  4. B-Tree and B+ Tree: They are used to implement indexing in databases.
  5. Syntax Tree: Used in Compilers.
  6. K-D Tree: A space partitioning tree used to organize points in K dimensional space.
  7. Trie: Used to implement dictionaries with prefix lookup.
  8. Suffix Tree: For quick pattern searching in a fixed text.
  9. Spanning Trees and shortest path trees are used in routers and bridges respectively in computer networks
  10. As a workflow for compositing digital images for visual effects.
The document Applications of Tree Data Structure | Programming and Data Structures - Computer Science Engineering (CSE) is a part of the Computer Science Engineering (CSE) Course Programming and Data Structures.
All you need of Computer Science Engineering (CSE) at this link: Computer Science Engineering (CSE)
119 docs|30 tests

Top Courses for Computer Science Engineering (CSE)

119 docs|30 tests
Download as PDF
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Applications of Tree Data Structure | Programming and Data Structures - Computer Science Engineering (CSE)

,

video lectures

,

practice quizzes

,

MCQs

,

Semester Notes

,

Important questions

,

shortcuts and tricks

,

pdf

,

Previous Year Questions with Solutions

,

ppt

,

Summary

,

mock tests for examination

,

Sample Paper

,

Free

,

Viva Questions

,

Objective type Questions

,

Extra Questions

,

Exam

,

Applications of Tree Data Structure | Programming and Data Structures - Computer Science Engineering (CSE)

,

study material

,

past year papers

,

Applications of Tree Data Structure | Programming and Data Structures - Computer Science Engineering (CSE)

;