第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

我不明白的是,前5個(gè)是排序好的,那么剩下的元素的放置順序是怎么樣的呢?為什么是這個(gè)順序呢?

我不明白的是,前5個(gè)是排序好的,那么剩下的元素的放置順序是怎么樣的呢?為什么是這個(gè)順序呢?

C++
慕妹3242003 2023-02-11 18:14:43
函數(shù)原型是這樣的partial_sort(first,middle,last).C++編程寶典上是這樣解釋的:對(duì)迭代器first和last所指定范圍中的元素進(jìn)行偏序排序.經(jīng)過(guò)排序的元素放到序列的前面部分,其余元素放到迭代器middle和last指定的范圍內(nèi).書(shū)上并且提供了一個(gè)例子,#include <iostream>#include <vector>#include <algorithm>#include <string>////////////////////////////////////////// The function to be called by// for_each().////////////////////////////////////////void show_val(string val){std::cout << val << std::endl;}////////////////////////////////////////// The main() function.////////////////////////////////////////int main(){// Create the vector object.std::vector<string> strVector;// Populate the vector with values.strVector.push_back("Zebra");strVector.push_back("Deer");strVector.push_back("Fish");strVector.push_back("Snake");strVector.push_back("Bat");strVector.push_back("Cat");strVector.push_back("Bird");strVector.push_back("Turtle");strVector.push_back("Horse");strVector.push_back("Cow");// Display the contents of the vector.std::cout << "Contents of vector: " << std::endl;for_each(strVector.begin(), strVector.end(), show_val);std::cout << std::endl;// Sort the vector.partial_sort(strVector.begin(),strVector.begin() + 5, strVector.end());// Display the contents of the new vector.std::cout << "Contents of vector: " << std::endl;for_each(strVector.begin(), strVector.end(), show_val);return 0;}運(yùn)行結(jié)果是這樣的:contents of vector:zebradeerfishsnakebatcatbirdturtlehorsecowcontents of vectors:batbirdcatcowdeerzebrasnaketurtlehorsefish
查看完整描述

2 回答

?
收到一只叮咚

TA貢獻(xiàn)1821條經(jīng)驗(yàn) 獲得超5個(gè)贊

partial_sort() 部分排序,不是全部排序。

因?yàn)?strVector.begin() + 5

排出前5個(gè),其它的放到后面不管

查看完整回答
反對(duì) 回復(fù) 2023-02-15
?
慕雪6442864

TA貢獻(xiàn)1812條經(jīng)驗(yàn) 獲得超5個(gè)贊

這和partial_sort的實(shí)現(xiàn)有關(guān)系。
他只保證參數(shù)1和參數(shù)2之間的內(nèi)容是排序的,而其它的部分的順序,是不排序的,至于為什么是這樣,你可以參考其實(shí)現(xiàn)。

查看完整回答
反對(duì) 回復(fù) 2023-02-15
  • 2 回答
  • 0 關(guān)注
  • 127 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)