Coders Packet

Packets submitted by Podila Rithwik Teja

Median of Two Sorted arrays in C++

To find the median of two different data without using extra space in C++. we use this algorithm. For eg: if we need a median of salaries given between two different batches.

KMP Algorithm for Searching in C++

Pattern searching is a common requirement when we do search for a string in notepad/word file/browser/database, Here we use pattern searching algorithms in C++ to search.

Validating Given IP Address in C++

we check whether the given IP address is valid or not using this algorithm in C++. In this project, we used IPv4 addresses, which consist of four decimal numbers ranging from 0 to 255.

Multiplication of Large numbers using Strings in C++

Sometimes multiplication of two numbers cannot be stored due to the size limit. We solve this problem by using Strings in C++.