Data Structure

Posts tagged Data Structure

Binary Tree using pointer in C

Introduction Here we will see example on binary tree using pointer in C programming language. The same concept can be used in other language to write program for…

Insert an Element into Array

How to insert element? This example will show you how to insert an element into an Array using C program. Insertion of an element in an existing array…

Search an Element in Array

How to find element? This example will show you how to search an element in an Array using C program. Finding an element in an array is straight…