Tree Search

Tuesday, 29 April 2014
Posted by Naveen's Blogs
#include< iostream > #include< cstdlib > #include< string > using namespace std; struct tree { int info; tree *Left, *Right; }; tree *root; class...
#include < iostream > #include < cstdlib > #include < string > using namespace std; class Dllist { private: typedef struct Node { string...
#include< iostream.h > #include< conio.h > #include< stdlib.h > class list { struct node { int data; node *link; }*p; public: ...

Shell Sort

Posted by Naveen's Blogs
#include< iostream.h > #include< constream.h > void read(int a[10],int n) { cout << "reading\n"; for(int i=0;i < n;i++) cin >> a[i];...

Sequential Search

Posted by Naveen's Blogs
#include< iostream > using namespace std; int main() { int arr[10]; int no_of_elements, key; bool found = false; cout<<"Enter the number of element: "; ...

Selection Sort

Posted by Naveen's Blogs
#include < iostream.h > const int MAX = 10 ; class array { private : int arr[MAX] ; int count ; public : array( ) ; void add (...

Quick Sort

Posted by Naveen's Blogs
#include #include #include #include int Partition(int low,int high,int arr[]); void Quick_sort(int low,int high,int arr[]); void main() { int *a,n,low,high,i; clrscr();...
Welcome to My Blog

Popular Post

Blogger templates

Powered by Blogger.

- Copyright © 2025 Data Structures using C++ -Robotic- Powered by Blogger - Designed by NAVEEN KUMAR -

6