If Any Required Program Please Ask In Comment I Will Help You(any Program in JAVA or C++) . . THANKS FOR VISITING MY BLOG!

If U LIKE MY PROFILE RAISE YOUR HAND IF U NOT RAISE UR STANDARD. Powered by Blogger.

If Any Required Program Please Ask In Comment I Will Help You(any Program in JAVA or C++) . . THANKS FOR VISITING MY BLOG!

Saturday, December 29, 2018

PROGRAM FOR BINARY SEARCHING IN TREES using RECURSION.


#include <iostream> #include <conio.h> #include <stdlib.h> using namespace std; class B_Tree; class Node { private:     int Info;     Node *Left, *Right;     friend class B_Tree; }; class B_Tree { private:     Node *Root; public:     B_Tree()     {         Root = NULL;     }  ...

PROGRAM TO COUNT SUM OF ALL NODES using RECURSION.


#include <iostream> #include <conio.h> #include <stdlib.h> using namespace std; class B_Tree; class Node { private:     int Info;     Node *Left, *Right;     friend class B_Tree; }; class B_Tree { private:     Node *Root; public:     B_Tree()     {         Root = NULL;     }  ...

PROGRAM FOR SORTING ARRAY USING QUICK SORT.


#include <iostream> #include <conio.h> using namespace std; class Array { private: int *Arr, Size, Right; public: Array(int Siz) { Arr = new int[Siz]; for (int I = 0; I <Siz; I++) Arr[I] = 0; Right = 0; Size = Siz; } void Input() { int No; cout << "Enter Size Of Array: "; cin >> No; Right = No; cout << "\nEnter Elements Of Array:...

PROGRAM FOR SORTING ARRAY USING MERGE SORT.


#include <iostream> #include <conio.h> using namespace std; class Array { private: int *Arr, Size, Right; public: Array(int Siz) { Arr = new int[Siz]; for (int I = 0; I <Siz; I++) { Arr[I] = 0; } Right = 0; Size = Siz; } void Input() { int No; cout << "Enter Size Of Array: "; cin >> No; Right = No; cout << "\nEnter Elements...

Saturday, December 1, 2018

PROGRAM TO IMPLEMENT INORDER TRAVERSAL using STACK.


#include <iostream> #include <stdlib.h> #include <conio.h> using namespace std; class Node; class B_Tree; template <class Type> class Stack { private: Type *Arr; int Top, Size; public: Stack(int Siz) { Size = Siz; Arr = new Type[Size]; for (int I = 0; I <Size; I++) { Arr[I] = 0; } Top = -1; } void Push(Type Num) { if (Top == Size - 1) ...

Friday, November 30, 2018

PROGRAM TO IMPLEMENT THE TREE TRAVERSELS.


#include <iostream> #include <conio.h> #include <stdlib.h> using namespace std; class B_Tree; class Node { private:     int Info;     Node *Left, *Right;     friend class B_Tree; }; class B_Tree { private:     Node *Root; public:     B_Tree()     {         Root = NULL;     }  ...

PROGRAM TO IMPLEMENT THE DOUBLY LINKLIST.


#include <iostream> #include <stdlib.h> #include <conio.h> using namespace std; class Double_LL; class Node { private:     int Info;     Node *Left, *Right;     friend class Double_LL; }; class Double_LL { private:     Node *First; public:     Double_LL()     {         First = NULL;    ...