top of page
Search
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
Quicksort example program in c++:
#include<iostream> #include<cstdlib> using namespace std; // Swapping two values. void swap(int *a, int *b) { int temp; temp = *a;...
The Tech Platform
Nov 2, 2020
Selection sort program in C++:
#include <iostream> #include <vector> using namespace std; int findMinIndex(vector<int> &A, int start) { int min_index = start; ...
The Tech Platform
Nov 2, 2020
Selection sort program in C:
#include <stdio.h> void swap(int *A, int i, int j) { int temp = A[i]; A[i] = A[j]; A[j] = temp; } int findMinIndex(int *A, int start,...
The Tech Platform
Nov 2, 2020
Insertion Sort Implementation in C++
#include <stdlib.h> #include <iostream> using namespace std; //member functions declaration void insertionSort(int arr[], int length);...
The Tech Platform
Nov 2, 2020
Insertion Sort Implementation In C
#include <stdio.h> #include <stdbool.h> #define MAX 7 //defining size of our array int intArray[MAX] = {4,6,3,2,1,9,7}; void...
The Tech Platform
Oct 11, 2020
What is YARA? YARA Rules for Malware Detection.
YARA - Yet Another Recursive/Ridiculous Acronym YARA is a tool which is used for malware detection and research. YARA by default comes...
The Tech Platform
Sep 30, 2020
Using C++ and WSL in VS Code
In this tutorial, you will configure Visual Studio Code to use the GCC C++ compiler (g++) and GDB debugger on Ubuntu in the Windows...
The Tech Platform
Sep 28, 2020
Program hardware from the Linux command line
Programming hardware has become more common thanks to the rise of the Internet of Things (IoT). RT-Thread lets you contact devices from...
bottom of page