Week 10_ Data Science_ Data Structures 3 (1)
Week 10_ Data Science_ Data Structures 3 (1)
Name:
Mobile:
In this task we are supposed to cover trees, this is an important concept in data structure.Trees
are a fundamental concept in computer science and data structures, offering a hierarchical
way of organising data. Imagine a tree in nature, with a trunk, branches, and leaves. Similarly,
in a tree data structure, there's a root node from which branches (child nodes) extend, further
branching out into smaller nodes or leaf nodes. Each node in a tree can have zero or more
child nodes, except the leaf nodes, which have no children.
In this task we are asked to learn about binary tree, binary search tree is where each node
can have at most two children.a left child and a right child.this allows for efficient
searching and insertion of data.
In this task we are suppose to learn in depth about every concepts in this week and do
problem on the topics mentioned above