I implemented a QuickSort Algorithm which only works for 7 elements and then gives a StackOverflow Error for 8 elements or more

huangapple go评论107阅读模式
英文:

I implemented a QuickSort Algorithm which only works for 7 elements and then gives a StackOverflow Error for 8 elements or more

问题

我实现了一个快速排序算法,该算法仅适用于7个元素,对于8个或更多的元素会产生堆栈溢出错误,进入无限循环。对于数组中存在的元素数量,它能正常工作,但如果我再添加一个元素,就会返回堆栈溢出错误。以下是我的代码:

  1. public class QuickSort
  2. {
  3. public void main()
  4. {
  5. QuickSort o = new QuickSort();
  6. int arr[] = {8, 5, 2, 10, 1, 7, 3};
  7. o.sort(arr, 0, arr.length - 1);
  8. for (int i = 0; i < arr.length; i++)
  9. System.out.print(arr[i] + " ");
  10. }
  11. void sort(int[] arr, int l, int h)
  12. {
  13. if (l < h)
  14. {
  15. int pi = partition(arr, l, h);
  16. sort(arr, l, pi);
  17. sort(arr, pi + 1, h);
  18. }
  19. }
  20. int partition(int arr[], int l, int h)
  21. {
  22. int pivot = arr[l];
  23. int i = l, j = h;
  24. while (i < j)
  25. {
  26. while (arr[i] <= pivot)
  27. {
  28. i++;
  29. }
  30. while (arr[j] > pivot)
  31. {
  32. j--;
  33. }
  34. if (i < j)
  35. {
  36. int t = arr[i];
  37. arr[i] = arr[j];
  38. arr[j] = t;
  39. }
  40. }
  41. int t = arr[j];
  42. arr[j] = pivot;
  43. arr[l] = t;
  44. return j;
  45. }
  46. }
英文:

I implemented a QuickSort Algorithm which only works for 7 elements and then gives a StackOverflow Error for 8 elements or more. Goes into an infinite loop. Works fine for the number of elements that are present in the array but if I add one more element, it returns a StackOverflow Error
Here is my code:

  1. public class QuickSort
  2. {
  3. public void main()
  4. {
  5. QuickSort o = new QuickSort();
  6. int arr[] = {8,5,2,10,1,7,3};
  7. o.sort(arr,0,arr.length-1);
  8. for(int i=0;i&lt;arr.length;i++)
  9. System.out.print(arr[i]+&quot; &quot;);
  10. }
  11. void sort(int []arr,int l,int h)
  12. {
  13. if(l&lt;h)
  14. {
  15. int pi = partition(arr,l,h);
  16. sort(arr,l,pi);
  17. sort(arr,pi+1,h);
  18. }
  19. }
  20. int partition(int arr[],int l,int h)
  21. {
  22. int pivot = arr[l];
  23. int i=l,j=h;
  24. while(i&lt;j)
  25. {
  26. while(arr[i]&lt;=pivot)
  27. {
  28. i++;
  29. }
  30. while(arr[j]&gt;pivot)
  31. {
  32. j--;
  33. }
  34. if(i&lt;j)
  35. {
  36. int t = arr[i];
  37. arr[i] = arr[j];
  38. arr[j] = t;
  39. }
  40. }
  41. int t = arr[j];
  42. arr[j] = pivot;
  43. arr[l] = t;
  44. return j;
  45. }
  46. }

答案1

得分: 0

我认为问题在于您没有将枢轴放在正确的位置。

以下是您的代码做了一个小改动后的版本:

  1. int partition(int arr[], int l, int h) {
  2. int pivot = arr[l];
  3. int i = l, j = h;
  4. while (i < j) {
  5. while (i < j && arr[i] <= pivot) { i++; }
  6. while (i < j && arr[j] > pivot) { j--; }
  7. if (i < j) {
  8. int t = arr[i];
  9. arr[i] = arr[j];
  10. arr[j] = t;
  11. }
  12. }
  13. // 这里确定了枢轴应该放置的位置。通过示例最容易理解
  14. // 循环后,数组可能是 3 1 2 4 5
  15. // 枢轴是 3,应该与数字 2 进行交换,但索引 j 有时指向数字 2,有时指向数字 4
  16. // 以下代码确定了所需的索引
  17. int lowerInd = arr[j] <= pivot ? j : j - 1;
  18. int t = arr[lowerInd];
  19. arr[lowerInd] = arr[l];
  20. arr[l] = t;
  21. return lowerInd;
  22. }
  23. 此外,在您的排序方法中,请调用 `sort(arr, l, pi - 1);`,而不是 `sort(arr, l, pi);`
  24. void sort(int[] arr, int l, int h) {
  25. if (l < h) {
  26. int pi = partition(arr, l, h);
  27. sort(arr, l, pi - 1);
  28. sort(arr, pi + 1, h);
  29. }
  30. }

如需进一步帮助,请随时提问。

英文:

I believe the problem is that you don't put the pivot in the right place.

Here is your code with a small change:

  1. int partition(int arr[],int l,int h){
  2. int pivot = arr[l];
  3. int i= l,j=h;
  4. while(i &lt; j){
  5. while( i &lt; j &amp;&amp; arr[i]&lt;=pivot){ i++;}
  6. while( i &lt; j &amp;&amp; arr[j]&gt;pivot){ j--;}
  7. if(i&lt; j){
  8. int t = arr[i];
  9. arr[i] = arr[j];
  10. arr[j] = t;
  11. }
  12. }
  13. //here it is determined where the pivot should go. It is easiest to understand with an example
  14. //after the loop arr can be 3 1 2 4 5
  15. //the pivot being 3 should be switched with the number 2 but index j sometimes points to number 2 and sometimes to number 4
  16. //the following code determines the desired index
  17. int lowerInd = arr[j] &lt;= pivot ? j : j - 1;
  18. int t = arr[lowerInd];
  19. arr[lowerInd] = arr[l];
  20. arr[l] = t;
  21. return lowerInd;
  22. }

Also, in your sort method, call sort(arr,l,pi - 1); instead of sort(arr,l,pi);

  1. void sort(int[] arr,int l,int h){
  2. if(l&lt;h){
  3. int pi = partition(arr,l,h);
  4. sort(arr,l,pi - 1);
  5. sort(arr,pi+1,h);
  6. }
  7. }

huangapple
  • 本文由 发表于 2020年8月17日 18:17:00
  • 转载请务必保留本文链接:https://go.coder-hub.com/63448842.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定