MCPcopy Create free account
hub / github.com/devparthgarg/Data-Structures-and-Algorithms / main

Function main

15. Binary Tree/01 Introduction/01.cpp:4–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2using namespace std;
3
4int main()
5{
6 /*
7
8 -->Tree stores data in the form of
9 hierarchical form.
10
11 -->Non-linear data structure.
12
13 Applications of Tree Data Structure:
14 1.used to represent hierarchical data.
15 -->organisation structure
16 -->folder structure
17 -->XML/HTML content
18 -->In OOPs(inheritance)
19 2.binary search trees
20 3.binary heap
21 4.B and B+ trees in DBMS
22 5.Spanning and shortest path trees
23 6.Parse trees, Comparison Trees in Compilers.
24
25 */
26}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected