Dblink - doubly linked list in java v1.51
Dblink is a java implementation of a doubly linked list with the following addl features: node swapping, inserion sort, selection sort and bubble sort. Very friendly interface provided.
Graphs A simulation of an undirected graph v1.04
Graphs is a simulation of an undirected graph with functions for depth first traversal, breadth first traversal, minimal spanning tree (Kruskal) and single source shortest distance (Dijkistra) included. The accompanying main class provides a good test for the class. Done in JAVA.
JAVA quicksort,
This routine Quicksorts two arrays. The first array (called KWList here) is actively sorted while the second (called KWPtr here) is passive: it moves with its corresponding element in the active array. An example is sorting of full names but based on Last names only, so the input file may look l...
Process Document Assistant beta
Process Document Assistant helps users manage a collection of documents that describe how to perform various tasks. It easily integrates with an existing file based documentation system by linking older documents into a document website. New documents can be manipulated with PDA and transformed ...
Value Sort Map Utility (Java Code)
This class is used to show how you can sort a java.uti.Map for values. This also takes care of null and duplicate values present in the map. Many times we come accross the requirement where we need to sort a Map (HashMap, Hashtable) for it's values. Like User Id's as key and User Name as values; and...