真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

求最小的k個數(shù)

輸入n個整數(shù),找出其中最小的k個數(shù)

目前創(chuàng)新互聯(lián)已為成百上千家的企業(yè)提供了網(wǎng)站建設、域名、虛擬主機、網(wǎng)站托管、服務器租用、企業(yè)網(wǎng)站設計、旌德網(wǎng)站維護等服務,公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

    解法1:需要修改輸入的數(shù)組,基于partition快速排序來做,時間復雜福O(N)

    分析:基于數(shù)組的第k個元素來調(diào)整,使的比第k個數(shù)大的所有數(shù)字放到數(shù)組的右邊,這樣,數(shù)組左邊k個就是最小的k個數(shù)字

void GetLestNumber(int *input, int n, int *output, int k)
{
	if (input == NULL || output == NULL || k > n || n <= 0 || k <= 0)
		return;

	int start = 0;
	int end = n - 1;
	int index = Partition(input, n, start, end);
	while (index != k - 1)
	{
		if (index > k - 1)
		{
			end = index - 1;
			index = Partition(input, n, start, end);
		}
		else
		{
			start = index + 1;
			index = Partition(input, n, start, end);
		}
	}
	for (int i = 0; i < k; ++i)
	{
		output[i] = input[i];
	}
}

解法二:

    分析:先創(chuàng)建一個大小為k的數(shù)據(jù)容器來存儲最小的k個數(shù)字,接著每次從輸入的n個整數(shù)中讀入一個數(shù),如果容器中少于k個數(shù)則直接放,若大于則表示容器以滿,此時找出容器中最大值,然后拿輸入的值和最大值比較,若待插入的數(shù)小于最大值,則直接替換。

    最大堆的結(jié)構(gòu)每次可以在O(1)得到最大值,但需要o(logk)時間來完成刪除及插入

    紅黑樹同上,但是代碼簡于大堆

void GetLestNumber(int *input, int n, int *output, int k)
{
        if (input == NULL || output == NULL || k > n || n <= 0 || k <= 0)
          return;

 int start = 0;
      int end = n - 1;
    int index = Partition(input, n, start, end);
        while (index != k - 1)
      {
           if (index > k - 1)
               {
                   end = index - 1;
                    index = Partition(input, n, start, end);
            }
           else
                {
                   start = index + 1;
                  index = Partition(input, n, start, end);
            }
   }
   for (int i = 0; i < k; ++i)
      {
           output[i] = input[i];
       }
}
解法二:
    分析:先創(chuàng)建一個大小為k的數(shù)據(jù)容器來存儲最小的k個數(shù)字,接著每次從輸入的n個整數(shù)中讀入一個數(shù),如果容器中少于k個數(shù)則直接放,若大于則表示容器以滿,此時找出容器中最大值,然后拿輸入的值和最大值比較,若待插入的數(shù)小于最大值,則直接替換。
    最大堆的結(jié)構(gòu)每次可以在O(1)得到最大值,但需要o(logk)時間來完成刪除及插入
const int N = 1000;
const int k = 10;
void AdjustDown(int *a, int size, int parent)
{
 int child = (parent - 1) / 2;
       while (child < size)
     {
           if (child+1a[child + 1])
                      child++;
            if (a[child]>a[parent])
          {
                   swap(a[child], a[parent]);
                  parent = child;
                     child = (parent - 1) / 2;
           }
           else
                        break;
      }
}
void GetTopK(int*a)
{
  assert(k < N);
   int top[k];
 for (int i = 0; i < k; i++)
      {
           top[i] = a[i];
      }
   for (int i = (k - 2) / 2; i >= 0; i++)
   {
           AdjustDown(top, k, i);
      }
   for (int i = N-k-1; i < N; i++)
  {
           if (a[i]>top[0])
         {
                   top[0] = a[i];
                      AdjustDown(top, k, 0);
              }
   }
}

文章題目:求最小的k個數(shù)
文章位置:http://weahome.cn/article/jespjh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部