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 8, 2022

  1. Home
  2. 2022
  3. October
  4. 08
October 8, 2022

Matrix in Programming

  • algorithms
  • data structures
  • matrix
  • YASH PAL

Two-dimensional array(Marix) – A two-dimensional array is a list of finite numbers m*n homogeneous data elements such that the element of the array is referenced by two index sets consisting of m and n consecutive integer numbers. the elements of the array are stored in consecutive The size of two – a dimensional array is […]

  • Tags:
  • DSA
  • matrix
Read More
October 8, 2022

Heap Sorting in C Programming

  • heap sorting
  • Sorting techniques
  • YASH PAL

HEAP SORTING: – In this method, a tree structure called a heap is used. A heap is a type of binary tree. An ordered balanced binary tree is called a min heap where the value at the root of any sub-tree is less than or equal to the value of either of its children. An […]

  • Tags:
  • DSA
  • heap
Read More
October 8, 2022

Quick Sorting in C Programming

  • quick sorting
  • Sorting techniques
  • YASH PAL

QUICK SORTING: – Quick Sort is an algorithm that also likes to merge sort and uses the idea of divide and conquers. This algorithm finds the element that divides (splits) the array into halves in such a way that the elements in the left sub-array are less than and the elements in the right sub […]

  • Tags:
  • DSA
  • quick sorting
  • sorting techniques
Read More
October 8, 2022

Radix sorting in C Programming

  • radix sorting
  • Sorting techniques
  • YASH PAL

RADIX SORTING:– A radix sort also called Bucket sort is the method used by most people when sorting a list of namesphabetic order. The procedure we follow: (a) First the names are grouped according to the first letter, thus the names are arranged in 26 classes, one for each letter of the alphabet. The first […]

  • Tags:
  • DSA
  • radix sorting
  • sorting techniques
Read More
October 8, 2022

Merge Sorting in C Programming

  • merge sorting
  • Sorting techniques
  • YASH PAL

MERGE SORTING: – Merging means combining two sorted lists into one sorted list. For this, the elements from both the sorted lists are compared. The smaller of both the elements are then stored in the third array Merge Sort is a sorting algorithm that uses the idea of divide and conquers This algorithm divides the […]

  • Tags:
  • DSA
  • merge sorting
  • 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