Skip to content

DSA

  • Algorithms
  • DSA
  • Array
  • Stack
  • Queue
  • Matrix
  • Programs

DSA

  • Algorithms
  • DSA
  • Array
  • Stack
  • Queue
  • Matrix
  • Programs

Day: October 8, 2022

  1. Home
  2. 2022
  3. October
  4. 08
Matrix in Programming
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
Heap Sorting in C Programming
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
Quick Sorting in C Programming
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
Radix sorting in C Programming
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
Merge Sorting in C Programming
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 program in C programming
  • Tower of Hanoi Non-Recursive Using Stack program in C programming
  • Tower of Hanoi Recursive program in C Programming
  • Check the Palindrome number program in c programming
  • Print the reverse of a string using Stack program in c
  • Evaluate a Postfix and Prefix equation program in c
  • Infix to Postfix and Prefix Equation program in c
  • Stack Operations program in c Programming
  • Quick Sorting (Recursive and Non Recursive)
  • Tower of Hanoi (Recursive & Non-recursive)
Home About Contact Privacy DMCA
Copyright © datastructuresandalgorithms.com 2022