DATA STRUCTURES
-
Stack data structure using linked list in C programming with menu
Stack data structure using linked list in C programming with menu // stack using linked list#include <stdio.h>#include <stdlib.h>struct stackItem{…
Read More » -
write a c program print fibonacci series using recursion
Fibonacci series using recursion? #include int fib(int n){ if (n
Read More » -
circular linked list
Circular Linked list: A circular linked list is a collection of elements in which every element has a link to…
Read More » -
doubly linked list
Doubly Linked List: Doubly linked list is a list in which a node has three parts data part and two…
Read More » -
singly linked list
Singly Linked List Singly linked list is a list where in every node there are two parts data part and…
Read More » -
what is linked list data structure
What is a Linked list? Linked list is linear data structure which stores its data elements called nodes in random…
Read More » -
write a c program to implement bubble sort on an array
Bubble sort #include <stdio.h>main(){ int a[100], number, i, j, temp; printf("n Please Enter the total Number of Elements : ");…
Read More » -
write a c program to implement selections sort on an array
Selection sort #include <stdio.h>main(){ int array[100], n, c, d, position, t; printf("Enter number of elementsn"); scanf("%d", &n); printf("Enter %d integersn",…
Read More » -
write a c program to implement insertion sort on an array
Insertion sort #include <stdio.h>main(){ int n, array[1000], c, d, t, flag = 0; printf("Enter number of elementsn"); scanf("%d", &n);…
Read More »