Search:

Type: Posts; User: Kaisshau

Search: Search took 0.09 seconds.

  1. Replies
    4
    Views
    7,365

    Re: Insertion Sort on a Doubly Linked List

    It simply says "Insertion Sort", I got the idea that you needed two lists from my misunderstanding of the Wikipedia article on Insertion Sorts. My new Code is:

    public void sort ()
    {
    if (size...
  2. Replies
    4
    Views
    7,365

    Re: Insertion Sort on a Doubly Linked List

    Ok, apparently I wildly misunderstood, I thought an insertion sort meant creating a new sorted list. I'm going to try and re-write it without making a new list.
  3. Replies
    4
    Views
    7,365

    Insertion Sort on a Doubly Linked List

    I'm having some trouble on a problem. What is supposed to happen is that a list of integers is read into an unsorted Doubly Linked List, and then sorted using an insertion sort. The code I have for...
Results 1 to 3 of 3