C program for Application of Linked List: Polynomial Multiplication Arun 05:20 0 #include<stdio.h> #include<conio.h> #include<stdlib.h> struct poly { int c,e; struct poly *next; }; void re...
C program for Bubble, Selection, Insertion and Heap Sorting Arun 04:57 0 #include <stdio.h> #include <stdlib.h> #include <math.h> void enterelements(int a[],int size) { int i; for(i=...
C program for Merge sort and Quick Sort Arun 04:56 0 #include <stdio.h> #include <stdlib.h> #include <math.h> void enterelements(int a[],int size) { int i; for(i=...
C program for Linear search and Binary search Arun 04:55 0 #include <stdio.h> #include <stdlib.h> void enterelements(int a[],int size) { int i; for(i=1;i<=size;i++) { ...
C program for Graph Traversals: DFS and BFS Arun 04:53 0 #include <stdio.h> #include <stdlib.h> #include <conio.h> int push(int s[],int top,int item) { top=top+1; s[top...
C program for Maze Problem Arun 04:51 0 #include <stdio.h> int flag=0; void jump(int maze[][6],int visit [][6],int i,int j,int endi,int endj) { if((i>=0&...
Binary tree using array Arun 06:40 0 #include <stdio.h> #include <stdlib.h> void build_tree(int tree[],int index) { char op1,op2; if(index!=0) { print...
Binary Tree using Linked List Arun 07:21 0 #include <stdlib.h> #include <stdio.h> struct node { int data; struct node *lc; struct node *rc; }; void build_tree ...
Application of Linked List - Polynomial addition and subtraction Arun 09:07 0 #include<stdio.h> #include<conio.h> #inlcude<stdlib.h> struct poly { int c,e; struct poly *next; }; ...
Linked List Implementation Arun 06:28 0 #include<stdio.h> #include<conio.h> struct node { int data; struct node *next; }; struct node * insf(stru...
Linked List Implementation using Dynamic Memory Allocation Arun 08:22 0 #include<stdio.h> #include<conio.h> struct node { int data; struct node *next; }; struct node * insf(struc...