Shewale Gopal Sanjay
Shewale Gopal Sanjay
### What would you like to Propose? **Title:** Add ElGamal Encryption and Decryption Algorithm Implementation --- ### 🧠Overview I propose implementing the **ElGamal encryption scheme**, a public-key cryptosystem based...
### What would you like to Propose? **Title:** Add Threaded Binary Tree Implementation for In-Order Traversal without Recursion --- ### 🧠Overview A **Threaded Binary Tree** improves binary tree traversal...
### What would you like to Propose? **Title:** Add Topological Sorting Algorithm using Depth-First Search (DFS) --- ### 🧠Overview Implement a **DFS-based topological sort** for directed acyclic graphs (DAGs)....
### What would you like to Propose? **Title:** Add Sudoku Solver using Backtracking --- ### 🧠Overview I’d like to contribute a **Sudoku Solver** algorithm using the **Backtracking technique**. This...
## Description This PR adds an implementation to check whether a number is a power of four using bit manipulation. The algorithm ensures that: - The number is positive. -...
## Description This PR adds an implementation for counting the total number of set bits from 1 to N using bit manipulation. The algorithm efficiently counts bits using mathematical observation...
### What would you like to Propose? **Title:** Add Huffman Coding for Lossless Compression and Decompression --- ### 🧠Overview Implement **Huffman Coding**, a greedy algorithm used in file compression...
### What would you like to Propose? **Title:** Add One-Time Pad Cipher Implementation --- ### 🧠Overview The **One-Time Pad (OTP)** is an unbreakable cipher (if key truly random and...