Skip to content

Instantly share code, notes, and snippets.

@RahulSD
RahulSD / SDES.java
Created June 9, 2012 16:45
Simple Implementation of SDES Algorithm in Java
/**
SDES Algorithm
By: Rahul S Dambre
*/
package RahulDambre.SDES;
import java.util.*;
@RahulSD
RahulSD / HashTable
Created February 6, 2015 05:14
POC HashTable implementation using Uninitialized arrays
/*
ToDO :
Add Generics
Better hasing function
Proper handling of size , and autoResize
Add more operations
*/