SlideShare a Scribd company logo
DATA STRUCTURE USING C & C++
SUBMITTED TO: SUBMITTED BY:
LECT. ABHISHEK KUMAR MUSTKEEM
ADD.NO.:14S121
BRANCH: 5 CS.
DIGAMBER JAIN POLYTECHNIC BARAUT BAGHPAT
Admission no.:14S121
Page 1
INTRODUCTION OF DATA STRUCTURE:
Data structure is a particular way of organizing data in a computer so that it can be used
efficiently. Data structures can implement one or more particular abstract data types (ADT),
which specify the operations that can be performed on a data structure and the computational
complexity of those operations. In comparison, a data structure is a concrete implementation
of the specification provided by an ADT.
REQUIREMENT OF DSU C&C++ (TURBO C):
Hardware Requirement:
 IBM-Intel Pentium 4 or above.
 Minimum of 512 MB RAM.
 One 1 GB Free Hard Disk.
 Keyboard and Mouse.
 A CD-ROM drive or USB port.
Software Requirement:
 Operating system- Window 95 or higher.
 Turbo C & C++ or Dev-Cpp.
Admission no.:14S121
Page 2
Setup of Turbo C++:
Step 1:
Download Turbo C from “https://turboc.codeplex.com.”
Step 2:
Click setup.exe file.
Step 3:
Click next.
Admission no.:14S121
Page 3
Step 4:
Accept license agreement and click next.
Step 5:
Click install.
Admission no.:14S121
Page 4
Step 6:
Click finish.
Program 1: WAP in C to print “Hello World”.
#include<stdio.h>
#include<conio.h>
Void main()
{
printf(“Hello World”);
getch();
}
Output:
Admission No.: 14S121
Program 2: Write a Program to Implement Linked List.
Code:
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
void main()
{
struct node
{
intnum;
struct node *ptr;
};
typedefstruct node NODE;
NODE *head, *first, *temp = 0;
int count = 0;
int choice = 1;
first = 0;
while (choice)
{
head = (NODE *)malloc(sizeof(NODE));
printf("Enter the data itemn");
scanf("%d", &head->num);
if (first != 0)
{
temp->ptr = head;
temp = head;
}
else
first = temp = head;
}
fflush(stdin);
printf("Do you want to continue(Type 0 or 1)?n");
scanf("%d", &choice);
}
temp->ptr = 0;
/* reset temp to the beginning */
temp = first;
printf("n status of the linked list isn");
while (temp != 0)
Admission No.: 14S121
{
printf("%d=>", temp->num);
count++;
temp = temp ->ptr;
}
printf("NULLn");
printf("No. of nodes in the list = %dn", count);
getch();
}
Output:
Admission No.: 14S121
Practical 3: Write a program to Implement stack operations Push & Pop.
Code:
#include <stdio.h>
#include <stdlib.h>
int stack[5];
void push();
int pop();
void traverse();
int is_empty();
int top_element();
int top = 0;
int main()
{
int element, choice;
for (;;)
{
printf("Stack Operations.n");
printf("1. Insert into stack (Push operation).n");
printf("2. Delete from stack (Pop operation).n");
printf("3. Print top element of stack.n");
printf("4. Check if stack is empty.n");
printf("5. Traverse stack.n");
printf("6. Exit.n");
printf("Enter your choice.n");
scanf("%d",&choice);
switch (choice)
{
case 1:
if (top == 5)
printf("Error: Overflownn");
else {
printf("Enter the value to insert.n");
scanf("%d", &element);
push(element);
}
break;
case 2:
if (top == 0)
printf("Error: Underflow.nn");
else {
element = pop();
printf("Element removed from stack is %d.n", element);
Admission No.: 14S121
}
break;
case 3:
if (!is_empty()) {
element = top_element();
printf("Element at the top of stack is %dnn", element);
}
else
printf("Stack is empty.nn");
break;
case 4:
if (is_empty())
printf("Stack is empty.nn");
else
printf("Stack is not empty.nn");
break;
case 5:
traverse();
break;
case 6:
exit(0);
}
}
}
void push(int value) {
stack[top] = value;
top++;
}
int pop() {
top--;
return stack[top];
}
void traverse() {
int d;
if (top == 0) {
printf("Stack is empty.nn");
return;
}
printf("There are %d elements in stack.n", top);
for (d = top - 1; d >= 0; d--)
printf("%dn", stack[d]);
printf("n");
}
Admission No.: 14S121
intis_empty() {
if (top == 0)
return 1;
else
return 0;
}
inttop_element() {
return stack[top-1];
getch();
}
Output:
Admission No.: 14S121
Practical 4: Write a Program to Implement Queue Operations Insertion &
Deletion.
Code:
#include <stdio.h>
#include <stdlib.h>
#define QUEUESIZE 10
int queue[QUEUESIZE], f=0, r=-1;
// Check if queue is full
intqueuefull() {
if(r == QUEUESIZE - 1) {
return 1;
}
return 0;
}
// Check if the queue is empty
intqueueempty() {
if(f > r) {
return 1;
}
return 0;
}
// Show queue content
intqueueshow() {
inti;
if(queueempty()) {
Admission No.: 14S121
printf(" n The queue is emptyn");
} else {
printf("Start->");
for(i=f; i<=r; i++) {
printf("%d ", queue[i]);
}
printf("<-End");
}
return 0;
}
// Perform an insert operation.
intqueueinsert(intoneelement) {
if(queuefull()) {
printf("nn Overflow!!!!nn");
} else {
++r;
queue[r] = oneelement;
}
return 0;
}
// Perform a delete operation
intqueuedelete() {
intelem;
if(queueempty()) {
printf(" n The queue is emptyn");
return(-1);
} else {
Admission No.: 14S121
elem=queue[f];
f=f+1;
return(elem);
}
}
int main() {
int option, element;
charch;
do {
printf("n Press 1-Insert, 2-Delete, 3-Show, 4-Exitn");
printf("n Your selection? ");
scanf("%d",&option);
switch(option) {
case 1:
printf("nnContent to be Inserted?");
scanf("%d",&element);
queueinsert(element);
break;
case 2:
element=queuedelete();
if( element != -1 ) {
printf("nnDeleted element (with content %d) n",element);
}
break;
case 3:
printf("nnStatus of the queuenn");
queueshow();
Admission No.: 14S121
break;
case 4:
printf("nn Ending the program nn");
break;
default:
printf("nnInvalid option, please retry! nn");
break;
}
} while(option != 4);
getch();
return 0;
}
Output:
Admission No.: 14S121
Practical 5: Write a Program to Implement Insertion Sorting.
Code:
#include <stdio.h>
int main()
{
int n, array[1000], c, d, t;
printf("Enter number of elementsn");
scanf("%d", &n);
printf("Enter %d integersn", n);
for (c = 0; c < n; c++) {
scanf("%d", &array[c]);
}
for (c = 1 ; c <= n - 1; c++) {
d = c;
while ( d > 0 && array[d] < array[d-1]) {
t = array[d];
array[d] = array[d-1];
array[d-1] = t;
d--;
}
}
printf("Sorted list in ascending order:n");
for (c = 0; c <= n - 1; c++) {
printf("%dn", array[c]);
}
getch();
return 0;
}
Admission No.: 14S121
Output:
Admission No.: 14S121
Practical 6:Write a Program to Implement Bubble Sorting.
Code:
#include <stdio.h>
int main()
{
int array[100], n, c, d, swap;
printf("Enter number of elementsn");
scanf("%d", &n);
printf("Enter %d integersn", n);
for (c = 0; c < n; c++)
scanf("%d", &array[c]);
for (c = 0 ; c < ( n - 1 ); c++)
{
for (d = 0 ; d < n - c - 1; d++)
{
if (array[d] > array[d+1]) /* For decreasing order use < */
{
swap = array[d];
array[d] = array[d+1];
array[d+1] = swap;
}
}
}
printf("Sorted list in ascending order:n");
for ( c = 0 ; c < n ; c++ )
printf("%dn", array[c]);
getch();
return 0;
}
Admission No.: 14S121
Output:
Admission No.: 14S121
Practical 7: Write a Program to Implement Quick Sorting.
Code:
#include<stdio.h>
#include<conio.h>
//quick Sort function to Sort Integer array list
void quicksort(int array[], intfirstIndex, intlastIndex)
{
//declaaring index variables
intpivotIndex, temp, index1, index2;
if(firstIndex<lastIndex)
{
//assigninh first element index as pivot element
pivotIndex = firstIndex;
index1 = firstIndex;
index2 = lastIndex;
//Sorting in Ascending order with quick sort
while(index1 < index2)
{
while(array[index1] <= array[pivotIndex] && index1 <lastIndex)
{
index1++;
}
while(array[index2]>array[pivotIndex])
{
index2--;
}
if(index1<index2)
{
//Swapping opertation
Admission No.: 14S121
temp = array[index1];
array[index1] = array[index2];
array[index2] = temp;
}
}
//At the end of first iteration, swap pivot element with index2 element
temp = array[pivotIndex];
array[pivotIndex] = array[index2];
array[index2] = temp;
//Recursive call for quick sort, with partiontioning
quicksort(array, firstIndex, index2-1);
quicksort(array, index2+1, lastIndex);
}
}
int main()
{
//Declaring variables
int array[100],n,i;
//Number of elements in array form user input
printf("Enter the number of element you want to Sort : ");
scanf("%d",&n);
//code to ask to enter elements from user equal to n
printf("Enter Elements in the list : ");
for(i = 0; i< n; i++)
{
scanf("%d",&array[i]);
}
//calling quickSort function defined above
quicksort(array,0,n-1);
Admission No.: 14S121
//print sorted array
printf("Sorted elements: ");
for(i=0;i<n;i++)
printf(" %d",array[i]);
getch();
return 0;
}
Output:
Admission No.: 14S121
Practical 8: Write a Program to Implement Merge Sorting.
Code:
#include<stdio.h>
#define MAX 50
voidmergeSort(intarr[],intlow,intmid,int high);
void partition(intarr[],intlow,int high);
int main()
{
int merge[MAX],i,n;
printf("Enter the total number of elements: ");
scanf("%d",&n);
printf("Enter the elements which to be sort: ");
for(i=0;i<n;i++){
scanf("%d",&merge[i]);
}
partition(merge,0,n-1);
printf("After merge sorting elements are: ");
for(i=0;i<n;i++){
printf("%d ",merge[i]);
}
return 0;
}
void partition(intarr[],intlow,int high){
int mid;
if(low<high){
mid=(low+high)/2;
partition(arr,low,mid);
partition(arr,mid+1,high);
mergeSort(arr,low,mid,high);
Admission No.: 14S121
}
}
voidmergeSort(intarr[],intlow,intmid,int high){
inti,m,k,l,temp[MAX];
l=low;
i=low;
m=mid+1;
while((l<=mid)&&(m<=high)){
if(arr[l]<=arr[m]){
temp[i]=arr[l];
l++;
}
else{
temp[i]=arr[m];
m++;
}
i++;
}
if(l>mid){
for(k=m;k<=high;k++){
temp[i]=arr[k];
i++;
}
}
else{
for(k=l;k<=mid;k++){
temp[i]=arr[k];
Admission No.: 14S121
i++;
}
}
for(k=low;k<=high;k++){
arr[k]=temp[k];
}
}
Output:
Admission No.: 14S121
Practical 9:Write a Program to Implement Heap Sorting.
Code:
#include<stdio.h>
#include<conio.h>
void manage(int *, int);
voidheapsort(int *, int, int);
int main()
{
intarr[20];
inti,j,size,tmp,k;
printf("nt------- Heap sorting method -------nn");
printf("Enter the number of elements to sort : ");
scanf("%d",&size);
for(i=1; i<=size; i++)
{
printf("Enter %d element : ",i);
scanf("%d",&arr[i]);
manage(arr,i);
}
j=size;
for(i=1; i<=j; i++)
{
tmp=arr[1];
arr[1]=arr[size];
arr[size]=tmp;
size--;
heapsort(arr,1,size);
}
printf("nt------- Heap sorted elements -------nn");
size=j;
for(i=1; i<=size; i++)
printf("%d ",arr[i]);
getch();
return 0;
}
void manage(int *arr, inti)
{
inttmp;
tmp=arr[i];
while((i>1)&&(arr[i/2]<tmp))
{
arr[i]=arr[i/2];
Admission No.: 14S121
i=i/2;
}
arr[i]=tmp;
}
voidheapsort(int *arr, inti, int size)
{
inttmp,j;
tmp=arr[i];
j=i*2;
while(j<=size)
{
if((j<size)&&(arr[j]<arr[j+1]))
j++;
if(arr[j]<arr[j/2])
break;
arr[j/2]=arr[j];
j=j*2;
}
arr[j/2]=tmp;
}
Output:

More Related Content

PPT
PPT
JavaScript Objects
PDF
Celery: The Distributed Task Queue
PDF
Django Introduction & Tutorial
PPTX
Introduction to Rust language programming
PPT
MYSQL - PHP Database Connectivity
PPTX
Bootstrap.pptx
JavaScript Objects
Celery: The Distributed Task Queue
Django Introduction & Tutorial
Introduction to Rust language programming
MYSQL - PHP Database Connectivity
Bootstrap.pptx

What's hot (20)

PDF
SOLID Design Principles applied in Java
PDF
3.2 javascript regex
PPTX
Clean code
PDF
Rust: Systems Programming for Everyone
PDF
3000 tu-vung-tieng-anh-thong-dung-nhat-cua-oxford
PDF
Quick flask an intro to flask
PDF
react redux.pdf
PPTX
React JS: A Secret Preview
PPT
Pascal Programming Session 1
PDF
Build a Website Using HTML + CSS
PPT
Web designing using html
PPT
Introduction to HTML
PPT
CSS for Beginners
PPTX
React + Redux Introduction
PDF
How to Reverse Engineer Web Applications
PDF
PDF
Load Testing - How to Stress Your Odoo with Locust
PDF
An introduction to Rust: the modern programming language to develop safe and ...
PPT
PPTX
Php oop presentation
SOLID Design Principles applied in Java
3.2 javascript regex
Clean code
Rust: Systems Programming for Everyone
3000 tu-vung-tieng-anh-thong-dung-nhat-cua-oxford
Quick flask an intro to flask
react redux.pdf
React JS: A Secret Preview
Pascal Programming Session 1
Build a Website Using HTML + CSS
Web designing using html
Introduction to HTML
CSS for Beginners
React + Redux Introduction
How to Reverse Engineer Web Applications
Load Testing - How to Stress Your Odoo with Locust
An introduction to Rust: the modern programming language to develop safe and ...
Php oop presentation
Ad

Similar to DSU C&C++ Practical File Diploma (20)

DOCX
DataStructures notes
PDF
Data Structure using C
PDF
Data struture lab
DOCX
DOCX
Solutionsfor co2 C Programs for data structures
PDF
design and analysis of algorithm Lab files
PDF
DSC program.pdf
PPT
DATASTRUCTURES PPTS PREPARED BY M V BRAHMANANDA REDDY
DOCX
DOCX
Data Structure in C (Lab Programs)
PDF
Sujal Shripat Shirole ds practical book
DOCX
Data Structures Using C Practical File
DOCX
cs3381-object oriented programming-ab-manual
PDF
VTU DSA Lab Manual
PPTX
Double linked list
DOCX
In Class AssignmetzCST280W13a-1.pdfCST 280 In-Class Pract.docx
DOCX
Assignment no39
DOC
Basic c programs updated on 31.8.2020
PPTX
luckfuckfunctioneekefkfejewnfiwnfnenf.pptx
PDF
7 functions
DataStructures notes
Data Structure using C
Data struture lab
Solutionsfor co2 C Programs for data structures
design and analysis of algorithm Lab files
DSC program.pdf
DATASTRUCTURES PPTS PREPARED BY M V BRAHMANANDA REDDY
Data Structure in C (Lab Programs)
Sujal Shripat Shirole ds practical book
Data Structures Using C Practical File
cs3381-object oriented programming-ab-manual
VTU DSA Lab Manual
Double linked list
In Class AssignmetzCST280W13a-1.pdfCST 280 In-Class Pract.docx
Assignment no39
Basic c programs updated on 31.8.2020
luckfuckfunctioneekefkfejewnfiwnfnenf.pptx
7 functions
Ad

Recently uploaded (20)

PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
01-Introduction-to-Information-Management.pdf
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
PDF
Anesthesia in Laparoscopic Surgery in India
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Pre independence Education in Inndia.pdf
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
Cell Types and Its function , kingdom of life
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
VCE English Exam - Section C Student Revision Booklet
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
01-Introduction-to-Information-Management.pdf
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
Abdominal Access Techniques with Prof. Dr. R K Mishra
102 student loan defaulters named and shamed – Is someone you know on the list?
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
Anesthesia in Laparoscopic Surgery in India
Renaissance Architecture: A Journey from Faith to Humanism
2.FourierTransform-ShortQuestionswithAnswers.pdf
Pre independence Education in Inndia.pdf
STATICS OF THE RIGID BODIES Hibbelers.pdf
Cell Types and Its function , kingdom of life
PPH.pptx obstetrics and gynecology in nursing
O5-L3 Freight Transport Ops (International) V1.pdf
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
VCE English Exam - Section C Student Revision Booklet
Week 4 Term 3 Study Techniques revisited.pptx
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Final Presentation General Medicine 03-08-2024.pptx
Microbial disease of the cardiovascular and lymphatic systems

DSU C&C++ Practical File Diploma

  • 1. DATA STRUCTURE USING C & C++ SUBMITTED TO: SUBMITTED BY: LECT. ABHISHEK KUMAR MUSTKEEM ADD.NO.:14S121 BRANCH: 5 CS. DIGAMBER JAIN POLYTECHNIC BARAUT BAGHPAT
  • 2. Admission no.:14S121 Page 1 INTRODUCTION OF DATA STRUCTURE: Data structure is a particular way of organizing data in a computer so that it can be used efficiently. Data structures can implement one or more particular abstract data types (ADT), which specify the operations that can be performed on a data structure and the computational complexity of those operations. In comparison, a data structure is a concrete implementation of the specification provided by an ADT. REQUIREMENT OF DSU C&C++ (TURBO C): Hardware Requirement:  IBM-Intel Pentium 4 or above.  Minimum of 512 MB RAM.  One 1 GB Free Hard Disk.  Keyboard and Mouse.  A CD-ROM drive or USB port. Software Requirement:  Operating system- Window 95 or higher.  Turbo C & C++ or Dev-Cpp.
  • 3. Admission no.:14S121 Page 2 Setup of Turbo C++: Step 1: Download Turbo C from “https://turboc.codeplex.com.” Step 2: Click setup.exe file. Step 3: Click next.
  • 4. Admission no.:14S121 Page 3 Step 4: Accept license agreement and click next. Step 5: Click install.
  • 5. Admission no.:14S121 Page 4 Step 6: Click finish. Program 1: WAP in C to print “Hello World”. #include<stdio.h> #include<conio.h> Void main() { printf(“Hello World”); getch(); } Output:
  • 6. Admission No.: 14S121 Program 2: Write a Program to Implement Linked List. Code: #include <stdio.h> #include <malloc.h> #include <stdlib.h> void main() { struct node { intnum; struct node *ptr; }; typedefstruct node NODE; NODE *head, *first, *temp = 0; int count = 0; int choice = 1; first = 0; while (choice) { head = (NODE *)malloc(sizeof(NODE)); printf("Enter the data itemn"); scanf("%d", &head->num); if (first != 0) { temp->ptr = head; temp = head; } else first = temp = head; } fflush(stdin); printf("Do you want to continue(Type 0 or 1)?n"); scanf("%d", &choice); } temp->ptr = 0; /* reset temp to the beginning */ temp = first; printf("n status of the linked list isn"); while (temp != 0)
  • 7. Admission No.: 14S121 { printf("%d=>", temp->num); count++; temp = temp ->ptr; } printf("NULLn"); printf("No. of nodes in the list = %dn", count); getch(); } Output:
  • 8. Admission No.: 14S121 Practical 3: Write a program to Implement stack operations Push & Pop. Code: #include <stdio.h> #include <stdlib.h> int stack[5]; void push(); int pop(); void traverse(); int is_empty(); int top_element(); int top = 0; int main() { int element, choice; for (;;) { printf("Stack Operations.n"); printf("1. Insert into stack (Push operation).n"); printf("2. Delete from stack (Pop operation).n"); printf("3. Print top element of stack.n"); printf("4. Check if stack is empty.n"); printf("5. Traverse stack.n"); printf("6. Exit.n"); printf("Enter your choice.n"); scanf("%d",&choice); switch (choice) { case 1: if (top == 5) printf("Error: Overflownn"); else { printf("Enter the value to insert.n"); scanf("%d", &element); push(element); } break; case 2: if (top == 0) printf("Error: Underflow.nn"); else { element = pop(); printf("Element removed from stack is %d.n", element);
  • 9. Admission No.: 14S121 } break; case 3: if (!is_empty()) { element = top_element(); printf("Element at the top of stack is %dnn", element); } else printf("Stack is empty.nn"); break; case 4: if (is_empty()) printf("Stack is empty.nn"); else printf("Stack is not empty.nn"); break; case 5: traverse(); break; case 6: exit(0); } } } void push(int value) { stack[top] = value; top++; } int pop() { top--; return stack[top]; } void traverse() { int d; if (top == 0) { printf("Stack is empty.nn"); return; } printf("There are %d elements in stack.n", top); for (d = top - 1; d >= 0; d--) printf("%dn", stack[d]); printf("n"); }
  • 10. Admission No.: 14S121 intis_empty() { if (top == 0) return 1; else return 0; } inttop_element() { return stack[top-1]; getch(); } Output:
  • 11. Admission No.: 14S121 Practical 4: Write a Program to Implement Queue Operations Insertion & Deletion. Code: #include <stdio.h> #include <stdlib.h> #define QUEUESIZE 10 int queue[QUEUESIZE], f=0, r=-1; // Check if queue is full intqueuefull() { if(r == QUEUESIZE - 1) { return 1; } return 0; } // Check if the queue is empty intqueueempty() { if(f > r) { return 1; } return 0; } // Show queue content intqueueshow() { inti; if(queueempty()) {
  • 12. Admission No.: 14S121 printf(" n The queue is emptyn"); } else { printf("Start->"); for(i=f; i<=r; i++) { printf("%d ", queue[i]); } printf("<-End"); } return 0; } // Perform an insert operation. intqueueinsert(intoneelement) { if(queuefull()) { printf("nn Overflow!!!!nn"); } else { ++r; queue[r] = oneelement; } return 0; } // Perform a delete operation intqueuedelete() { intelem; if(queueempty()) { printf(" n The queue is emptyn"); return(-1); } else {
  • 13. Admission No.: 14S121 elem=queue[f]; f=f+1; return(elem); } } int main() { int option, element; charch; do { printf("n Press 1-Insert, 2-Delete, 3-Show, 4-Exitn"); printf("n Your selection? "); scanf("%d",&option); switch(option) { case 1: printf("nnContent to be Inserted?"); scanf("%d",&element); queueinsert(element); break; case 2: element=queuedelete(); if( element != -1 ) { printf("nnDeleted element (with content %d) n",element); } break; case 3: printf("nnStatus of the queuenn"); queueshow();
  • 14. Admission No.: 14S121 break; case 4: printf("nn Ending the program nn"); break; default: printf("nnInvalid option, please retry! nn"); break; } } while(option != 4); getch(); return 0; } Output:
  • 15. Admission No.: 14S121 Practical 5: Write a Program to Implement Insertion Sorting. Code: #include <stdio.h> int main() { int n, array[1000], c, d, t; printf("Enter number of elementsn"); scanf("%d", &n); printf("Enter %d integersn", n); for (c = 0; c < n; c++) { scanf("%d", &array[c]); } for (c = 1 ; c <= n - 1; c++) { d = c; while ( d > 0 && array[d] < array[d-1]) { t = array[d]; array[d] = array[d-1]; array[d-1] = t; d--; } } printf("Sorted list in ascending order:n"); for (c = 0; c <= n - 1; c++) { printf("%dn", array[c]); } getch(); return 0; }
  • 17. Admission No.: 14S121 Practical 6:Write a Program to Implement Bubble Sorting. Code: #include <stdio.h> int main() { int array[100], n, c, d, swap; printf("Enter number of elementsn"); scanf("%d", &n); printf("Enter %d integersn", n); for (c = 0; c < n; c++) scanf("%d", &array[c]); for (c = 0 ; c < ( n - 1 ); c++) { for (d = 0 ; d < n - c - 1; d++) { if (array[d] > array[d+1]) /* For decreasing order use < */ { swap = array[d]; array[d] = array[d+1]; array[d+1] = swap; } } } printf("Sorted list in ascending order:n"); for ( c = 0 ; c < n ; c++ ) printf("%dn", array[c]); getch(); return 0; }
  • 19. Admission No.: 14S121 Practical 7: Write a Program to Implement Quick Sorting. Code: #include<stdio.h> #include<conio.h> //quick Sort function to Sort Integer array list void quicksort(int array[], intfirstIndex, intlastIndex) { //declaaring index variables intpivotIndex, temp, index1, index2; if(firstIndex<lastIndex) { //assigninh first element index as pivot element pivotIndex = firstIndex; index1 = firstIndex; index2 = lastIndex; //Sorting in Ascending order with quick sort while(index1 < index2) { while(array[index1] <= array[pivotIndex] && index1 <lastIndex) { index1++; } while(array[index2]>array[pivotIndex]) { index2--; } if(index1<index2) { //Swapping opertation
  • 20. Admission No.: 14S121 temp = array[index1]; array[index1] = array[index2]; array[index2] = temp; } } //At the end of first iteration, swap pivot element with index2 element temp = array[pivotIndex]; array[pivotIndex] = array[index2]; array[index2] = temp; //Recursive call for quick sort, with partiontioning quicksort(array, firstIndex, index2-1); quicksort(array, index2+1, lastIndex); } } int main() { //Declaring variables int array[100],n,i; //Number of elements in array form user input printf("Enter the number of element you want to Sort : "); scanf("%d",&n); //code to ask to enter elements from user equal to n printf("Enter Elements in the list : "); for(i = 0; i< n; i++) { scanf("%d",&array[i]); } //calling quickSort function defined above quicksort(array,0,n-1);
  • 21. Admission No.: 14S121 //print sorted array printf("Sorted elements: "); for(i=0;i<n;i++) printf(" %d",array[i]); getch(); return 0; } Output:
  • 22. Admission No.: 14S121 Practical 8: Write a Program to Implement Merge Sorting. Code: #include<stdio.h> #define MAX 50 voidmergeSort(intarr[],intlow,intmid,int high); void partition(intarr[],intlow,int high); int main() { int merge[MAX],i,n; printf("Enter the total number of elements: "); scanf("%d",&n); printf("Enter the elements which to be sort: "); for(i=0;i<n;i++){ scanf("%d",&merge[i]); } partition(merge,0,n-1); printf("After merge sorting elements are: "); for(i=0;i<n;i++){ printf("%d ",merge[i]); } return 0; } void partition(intarr[],intlow,int high){ int mid; if(low<high){ mid=(low+high)/2; partition(arr,low,mid); partition(arr,mid+1,high); mergeSort(arr,low,mid,high);
  • 23. Admission No.: 14S121 } } voidmergeSort(intarr[],intlow,intmid,int high){ inti,m,k,l,temp[MAX]; l=low; i=low; m=mid+1; while((l<=mid)&&(m<=high)){ if(arr[l]<=arr[m]){ temp[i]=arr[l]; l++; } else{ temp[i]=arr[m]; m++; } i++; } if(l>mid){ for(k=m;k<=high;k++){ temp[i]=arr[k]; i++; } } else{ for(k=l;k<=mid;k++){ temp[i]=arr[k];
  • 25. Admission No.: 14S121 Practical 9:Write a Program to Implement Heap Sorting. Code: #include<stdio.h> #include<conio.h> void manage(int *, int); voidheapsort(int *, int, int); int main() { intarr[20]; inti,j,size,tmp,k; printf("nt------- Heap sorting method -------nn"); printf("Enter the number of elements to sort : "); scanf("%d",&size); for(i=1; i<=size; i++) { printf("Enter %d element : ",i); scanf("%d",&arr[i]); manage(arr,i); } j=size; for(i=1; i<=j; i++) { tmp=arr[1]; arr[1]=arr[size]; arr[size]=tmp; size--; heapsort(arr,1,size); } printf("nt------- Heap sorted elements -------nn"); size=j; for(i=1; i<=size; i++) printf("%d ",arr[i]); getch(); return 0; } void manage(int *arr, inti) { inttmp; tmp=arr[i]; while((i>1)&&(arr[i/2]<tmp)) { arr[i]=arr[i/2];
  • 26. Admission No.: 14S121 i=i/2; } arr[i]=tmp; } voidheapsort(int *arr, inti, int size) { inttmp,j; tmp=arr[i]; j=i*2; while(j<=size) { if((j<size)&&(arr[j]<arr[j+1])) j++; if(arr[j]<arr[j/2]) break; arr[j/2]=arr[j]; j=j*2; } arr[j/2]=tmp; } Output: