| 2 | using namespace std; |
| 3 | |
| 4 | int 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected