Skip to content

DSA

  • Home
  • Algorithms
  • Data Structures
  • Array
  • Stack
  • Queue
  • Matrix
  • Sorting Techniques

DSA

  • Home
  • Algorithms
  • Data Structures
  • Array
  • Stack
  • Queue
  • Matrix
  • Sorting Techniques

Day: October 7, 2022

  1. Home
  2. 2022
  3. October
  4. 07
October 7, 2022

Shell Sorting in C Programming

  • shell sorting
  • Sorting techniques
  • YASH PAL

SHELL SORTING: It is also called diminishing increment sort, named after its discoverer. Shell sort algorithm provides mofo significant improvement on simple insertion sort. This method sorts separate sub-files of the original file. These subfiles contain every k elements of the original file. The value of k is called an increment or a gap. The […]

  • Tags:
  • DSA
  • shell sorting
  • sorting techniques
Read More
October 7, 2022

Insertion Sorting in C Programming

  • insertion sorting
  • Sorting techniques
  • YASH PAL

INSERTION SORTING: – An insertion sort is one that sorts a set of records by inserting records into an existing sorted file. If the initial file is sorted only one comparison is made on each pass so that the sort is O (N). If the file is initially sorted in reverse order, the sort is […]

  • Tags:
  • DSA
  • insertion sorting
  • sorting techniques
Read More
October 7, 2022

Bubble Sorting in C Programming

  • bubble sorting
  • Sorting techniques
  • YASH PAL

BUBBLE SORTING: One of the characteristics of this sort is that it is easy to understand and program it is probably the least efficient. The basic idea underlying the bubble sort is to pass through the file sequentially several times. Each pass consists of comparing each element in the file with its successor and interchanging […]

  • Tags:
  • bubble sorting
  • DSA
  • sorting techniques
Read More

Asides

  • Parenthesis matching using stack
  • Polish Notation
  • Mathematical Notation in Data Structure
  • Operations on Stack
  • Selection Sorting Algorithm
  • Matrix in Programming
  • Heap Sorting in C Programming
  • Quick Sorting in C Programming
  • Radix sorting in C Programming
  • Merge Sorting in C Programming
Home About Contact Privacy DMCA
Copyright © datastructuresandalgorithms.com 2022