Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
Re: Gap Sort
[CODE] public static void gapSort (Comparable [] data, int size) { int index; int gap, top; Comparable temp; boolean exchanged; double SF = 1.3; gap = size; do { exchanged = false; gap = (int) (gap / SF); if (gap == 0) gap = 1; for (index = 1; index …
The End.
pavigo