top of page
Search
The Tech Platform
Nov 10, 2020
Builder Design Pattern With Java
Builder Design Pattern is a creational design pattern that separates the construction of complex objects from their representation,...
The Tech Platform
Nov 7, 2020
How to Find Missing Number on Integer Array of 1 to 100
Let's understand the problem statement, we have numbers from 1 to 100 that are put into an integer array, what's the best way to find out...
The Tech Platform
Nov 2, 2020
Sorting Algorithm
Sorting algorithm is an algorithm that puts elements of a list in a certain order. The most frequently used orders are numerical order...
The Tech Platform
Nov 2, 2020
Heap Sort Algorithm
In this tutorial, you will learn how heap sort algorithm works. Also, you will find working examples of heap sort in C, C++, Java and...
The Tech Platform
Nov 2, 2020
Shell Sort Algorithm
In this tutorial, you will learn how shell sort works. Also, you will find working examples of shell sort in C, C++, Java and Python....
The Tech Platform
Nov 2, 2020
Bubble Sort Algorithm
Bubble sort, also known as a comparison sort, is a simple yet rudimentary sorting algorithm. It iterates through a list multiple times,...
The Tech Platform
Nov 2, 2020
Quick Sort Algorithm
The algorithm was developed by a British computer scientist Tony Hoare in 1959. The name "Quick Sort" comes from the fact that, quick...
The Tech Platform
Nov 2, 2020
Java program for implementation of QuickSort
class QuickSort { /* This function takes last element as pivot, places the pivot element at its correct position in sorted array, and...
The Tech Platform
Nov 2, 2020
Merge Sort Algorithm
Merge sort is one of the most efficient sorting algorithms. It works on the principle of Divide and Conquer. Merge sort repeatedly breaks...
The Tech Platform
Nov 2, 2020
Selection Sort
Selection Sort is a simple comparison-based sorting algorithm that divides the input array into two parts: a sorted part and an unsorted...
bottom of page