如何解决这种排序?

时间:2015-09-12 23:55:22

标签: c++ visual-studio visual-c++ visual-c++-2010

使用Knuth优化的快速排序,快速排序可在所有分区上运行> k个元素。以这种方式对数组进行部分排序,然后调用单个插入排序来优化结果。

使用pivot = x [随机元素]

给定输入文件" abc.txt"使用以下格式,读入数据并使用上述排序对其进行排序。第一个数字是要排序的元素数量。

输入" abc.txt"是:

11

8 1 11 2 10 9 3 4 7 6 5

输出应该是一行按升序排列的数字。

这是我的代码,但它不起作用。任何人都可以给我一个帮助:

#include <fstream>
#include <iostream>
#include <random>
using namespace std;

void Qsort(int a[], int low, int high)
{
    if(low >= high)
    {
        return;
    }
    int first = low;
    int last = high;
    int key = a[(rand() % (last - first + 1)) + first];

    while(first < last)
    {
        while(first < last && a[last] >= key)
        {
            --last;
        }

        a[first] = a[last];

        while(first < last && a[first] <= key)
        {
            ++first;
        }

        a[last] = a[first];    

    }
    a[first] = key;
    Qsort(a, low, first-1);
    Qsort(a, first+1, high);
}
int main()
{
    std::fstream myfile("C:\\abc.txt", std::ios_base::in);
    int y = 0;

    myfile >> y;
    int a[100000] = {}; 

    for (int i = 0; i < y; i++) {
        myfile >> a[i];
    }

    Qsort(a, 0, y-1); 
    for(int i = 0; i < y ; i++)
    {
        cout << a[i] << " ";
    }
    system("pause"); 
    return 0;
}

1 个答案:

答案 0 :(得分:1)

最有可能的是,您提供的myfile路径不正确。我自己测试了代码,它按照我的预期工作。如果我在正确的位置没有abc.txt,程序将运行并且没有输出。我认为这是你正在经历的,虽然&#34;不起作用&#34;有点模糊。

如果abc.txt中有C:,我的下一个猜测是,您的读取请求被操作系统击落,因为没有正确的权限来访问那里的文件。尝试将文件放入文档文件夹中。

此外,rand位于<cstdlib>,而不是<random>。虽然<random>似乎包括<cstdlib>,但我不会依赖它。您还希望使用srand对其进行播种,或者(作为更好的替代方案)了解如何使用<random>。它起初比较复杂,但要好得多。