User Profile

Collapse

Profile Sidebar

Collapse
Leach0789
Leach0789
Last Activity: Jan 11 '07, 03:18 AM
Joined: Jan 4 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Leach0789
    replied to Need help with my Shell sort method.
    in Java
    I dont think thath I quite understand the concept of shell sort. And I think thats why I cant quite get my method to work.
    See more | Go to post

    Leave a comment:


  • Leach0789
    started a topic Need help with my Shell sort method.
    in Java

    Need help with my Shell sort method.

    hey guys. I'm new to this forum. I'm taking computer science at my high school this year, and was wondering if you could help me out with my shell sort program im writing. Here's the method that I wrote...

    Code:
    static void sort(int [] list, int size)
    	{
    		for(int gap = size / 2; gap > 0; gap /= 2)
    		{
    			for(int c = 0; c < gap; c++)
    			{
    				if(list[c] < list[c+gap])
    					{
    ...
    See more | Go to post
No activity results to display
Show More
Working...