Parenthesis matching using stack YASH PAL, January 26, 2023May 28, 2024 Parenthesis matching algorithm PARENTHESIS_MATCHING (EQ, VALID) This algorithm checks whether the expression EQ written in… Continue Reading
data structures Polish Notation YASH PAL, December 10, 2022May 28, 2024 In polish notation, the operator is placed before the operands. Polish notation has types called… Continue Reading
Mathematical Notation in Data Structure YASH PAL, December 10, 2022May 28, 2024 Mathematical Notation in Data Structure – First of all we will consider various types of… Continue Reading
data structures Operations on Stack YASH PAL, December 10, 2022May 28, 2024 Operations on stacks: The following operations are performed on stacks. Creating an empty stack PUSH… Continue Reading
algorithms Selection Sorting Algorithm YASH PAL, November 26, 2022May 28, 2024 Selection Sorting Algorithm: The selection sort starts from the first element and searches the entire… Continue Reading
algorithms Matrix in Programming YASH PAL, October 8, 2022May 28, 2024 Two-dimensional array(Marix) – A two-dimensional array is a list of finite numbers m*n homogeneous data… Continue Reading
heap sorting Heap Sorting in C Programming YASH PAL, October 8, 2022May 28, 2024 HEAP SORTING: – In this method, a tree structure called a heap is used. A… Continue Reading
quick sorting Quick Sorting in C Programming YASH PAL, October 8, 2022May 28, 2024 QUICK SORTING: – Quick Sort is an algorithm that also likes to merge sort and… Continue Reading
radix sorting Radix sorting in C Programming YASH PAL, October 8, 2022May 28, 2024 RADIX SORTING:– A radix sort also called Bucket sort is the method used by most… Continue Reading
merge sorting Merge Sorting in C Programming YASH PAL, October 8, 2022May 28, 2024 MERGE SORTING: – Merging means combining two sorted lists into one sorted list. For this,… Continue Reading