Removing Duplicates Inside Insertion Sort

前端 未结 2 1239
渐次进展
渐次进展 2021-01-07 06:20

\"enter

I am basically dealing with the following problem where i am trying to alter t

相关标签:
2条回答
  • 2021-01-07 07:03
    public void InsertSort()
    {
        int t, j;
        for (int i = 1; i < _leght; i++)
        {
           t = _arr[i];
           for (j = i; j > 0; )
           {
                if (_arr[j - 1] == t) t = -1;
                if (_arr[j - 1] > t)
                {
                      _arr[j] = _arr[j - 1];
                      j--;
                 }
                 else break;
            }
            _arr[j] = t;
         }
    }
    
    0 讨论(0)
  • 2021-01-07 07:09

    You only need to add a single line to your while loop.

    while (j > 0 && temp <= a[j - 1]) {
        if(temp == a[j - 1]) temp = -1;
        a[j] = a[j - 1];
    
        j--;
    }
    

    You can think of the array as having two parts. The first part goes from 0 to i-1 and is sorted. The second part goes from i to the end of the array and is unsorted. In each iteration of the loop you take the first of the unsorted elements (which is a[i]) and place it into temp. This is the element you want to insert into the sorted part. Then you shift all the elements of the sorted part up until you find the place to insert temp. If you change temp to -1, your element that you are trying to insert now has become -1. The sorting algorithm will go on to try and insert -1 at the right place, which is the beginning of the array.

    0 讨论(0)
提交回复
热议问题