• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            清風竹林

            ぷ雪飄絳梅映殘紅
               ぷ花舞霜飛映蒼松
                 ----- Do more,suffer less

            C++中std::set<>集合中元素比較器(less<>)的設計

               一直沒有總結過,每次設計都會出一些問題,要知道STL的報錯可不是那么容易看懂的。
               假定需要設計的類為Country,各country之類比較的依據是人口population,分析如下:

               情形一:如果類Country類是你本人設計的,即你擁有對Country類的修改權,那么在類中重載operator<就可以了,需要注意的就是必須將其設計為const成員函數,如下:
            class Country
            {
            public:
                
            explicit Country(int population)
                {
                    m_nPopulation
            =population;
                }
                
            void print()
                {
                    std::cout
            <<m_nPopulation<<std::endl;
                }
                
            //注:operator<必須是const成員函數
                bool operator<(const Country& b)const
                {
                    
            return m_nPopulation<b.m_nPopulation;
                }

            private:
                
            int m_nPopulation;
            };
            int main(int argc, char* argv[])
            {
                Country countryArray[]
            ={Country(43), Country(54),Country(85),Country(95),Country(12),Country(57),Country(124),Country(78),
                    Country(
            45), Country(56),Country(87),Country(457),Country(567),Country(123),Country(456),Country(237),
                    Country(
            43), Country(784),Country(728),Country(76),Country(467),Country(83),Country(723),Country(86)};
                std::
            set<Country> countrySet;

                
            int nSize=sizeof countryArray/ sizeof countryArray[0];
                
            for (int i=0; i<nSize; ++i)
                {
                    countrySet.insert(countryArray[i]);
                }

                
            for (std::set<Country>::iterator iter=countrySet.begin(); countrySet.end()!=iter; ++iter)
                {
                    iter
            ->print();
                }


                
            //Sleep(int(2e9));
                system("pause");
                
            return 0;
            }

               情形二:Country為不是你設計的,即類中沒有已存在的operator<比較器,同時你也無法對其進行修改,那么你現在需要做的是在外部設計一個比較器,確切的說,是一個函數對象(或函數,但函數無法內聯),如下:

            class Country
            {
            public:
                
            explicit Country(int population)
                {
                    m_nPopulation
            =population;
                }
                
            void print()
                {
                    std::cout
            <<m_nPopulation<<std::endl;
                }
                
            //比上一個設計需要新加入一個函數
                int GetPopulation(voidconst
                {
                    
            return m_nPopulation;
                }
            private:
                
            int m_nPopulation;
            };
            int main(int argc, char* argv[])
            {
                Country countryArray[]
            ={Country(43), Country(54),Country(85),Country(95),Country(12),Country(57),Country(124),Country(78),
                    Country(
            45), Country(56),Country(87),Country(457),Country(567),Country(123),Country(456),Country(237),
                    Country(
            43), Country(784),Country(728),Country(76),Country(467),Country(83),Country(723),Country(86)};

                
            //設計函數對象
                struct country_less:public std::binary_function<Country, Country, bool>
                {
                    
            //這個倒不必須成為const成員函數,呵呵
                    bool operator()(const Country& a, const Country& b)const
                    {
                        
            return a.GetPopulation()<b.GetPopulation();
                    }
                };
                
            //std::set的定義就要復雜一些了
                std::set<Country, country_less> countrySet;

                
            int nSize=sizeof countryArray/ sizeof countryArray[0];
                
            for (int i=0; i<nSize; ++i)
                {
                    countrySet.insert(countryArray[i]);
                }
                
            //同樣,迭代器的定義也要復雜一些
                for (std::set<Country, country_less>::iterator iter=countrySet.begin(); countrySet.end()!=iter; ++iter)
                {
                    iter
            ->print();
                }

                
            //Sleep(int(2e9));
                system("pause");
                
            return 0;
            }

               這兩種情況的作用就是std::less<>謂詞,因此同樣適用于std::sort()









            posted on 2008-09-08 09:44 李現民 閱讀(10087) 評論(0)  編輯 收藏 引用 所屬分類: 語法試煉

            99久久亚洲综合精品网站| 无码国内精品久久人妻蜜桃| 少妇久久久久久被弄到高潮 | 欧美久久久久久午夜精品| 亚洲乱码日产精品a级毛片久久| 亚洲国产精品无码久久九九| 国产精品久久精品| 亚洲成色WWW久久网站| 久久精品亚洲男人的天堂| 午夜天堂精品久久久久| 久久午夜免费视频| 精品99久久aaa一级毛片| 精品久久久久香蕉网| 精品综合久久久久久98| 亚洲人成无码www久久久| 久久精品成人免费观看97| 久久99国产精品久久| 久久久久免费精品国产| 国产一级持黄大片99久久| 欧美喷潮久久久XXXXx| 色妞色综合久久夜夜| 久久er国产精品免费观看2| 久久亚洲精品中文字幕| 国产美女久久精品香蕉69| 久久综合久久综合久久综合| 国产精品欧美亚洲韩国日本久久| 久久av免费天堂小草播放| 人人狠狠综合88综合久久| 久久精品国产亚洲av影院| 一本大道久久a久久精品综合| 精品久久综合1区2区3区激情| 无码任你躁久久久久久老妇 | 久久乐国产综合亚洲精品| 久久精品天天中文字幕人妻| 精品人妻久久久久久888| 久久亚洲av无码精品浪潮| .精品久久久麻豆国产精品| 四虎亚洲国产成人久久精品| 精品久久香蕉国产线看观看亚洲| 久久人人爽人人爽人人片AV麻豆| 久久er国产精品免费观看2|