加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

C++排序(快速排序)

发布时间:2020-12-16 07:43:06 所属栏目:百科 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 #include iostream #define _SZ 10 using namespace std; templatetypename _Ty class Grial { public: Grial(_Ty *_P,int _X=_SZ) { _SP=_X; data =

以下代码由PHP站长网 52php.cn收集自互联网

现在PHP站长网小编把它分享给大家,仅供参考

    #include <iostream>  
    #define _SZ 10  
    using namespace std;  
      
      
    template<typename _Ty>  
    class Grial  
    {  
        public:  
        Grial(_Ty *_P,int _X=_SZ)  
        {  
            _SP=_X;  
            data = new _Ty[_SP];  
            for(int _I=0;_I<_SP;_I++)  
            {     
                data[_I]=_P[_I];  
            }  
            sort(data,_SP);  
        }  
        void view()  
        {  
            for(int _I=0;_I<_SP;_I++)  
            {  
                cout<<data[_I]<<"   ";  
            }  
            cout<<endl;  
        }  
        private:  
        void sort(_Ty *_A,int _L,int _R)  
        {  
                int _I=_L;  
                int _J=_R-1;  
                if(_L>=_R)return;  
                _Ty temp = _A[_I];  
             while(_I<_J)  
                {  
                    while(_I<_J && _A[_J]>=temp)--_J;  
                    _A[_I]=_A[_J];  
      
                    while(_I<_J && _A[_I]<=temp)++_I;  
                    _A[_J]=_A[_I];  
                }  
                _A[_I]=temp;  
                sort(_A,_I-1);  
                sort(_A,_I+1,_R);  
        }  
        private:  
        _Ty *data;  
        int _SP;  
    };  
      
    int main()  
    {  
        int a[]={0,4,5,6,7,8,90,2,43,3,5};  
        Grial<int> g(a,13);  
        g.view();  
        return 0;  
    }  

以上内容由PHP站长网【52php.cn】收集整理供大家参考研究

如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读