美文网首页
16.swap交换算法

16.swap交换算法

作者: lxr_ | 来源:发表于2021-05-15 10:46 被阅读0次
    #include<iostream>
    using namespace std;
    
    #include<vector>
    #include<algorithm>
    
    //swap(container c1, container c2);互换两个容器中的元素
    
    void MyPrintFunc(int val)
    {
        cout << val << " ";
    }
    void test1601()
    {
        vector<int> v1, v2;
        for (int i = 0; i < 10; i++)
        {
            v1.push_back(i);
    
            v2.push_back(9 - i);
        }
        cout << "交换前:" << endl;
    
        cout << "v1:" << endl;
        for_each(v1.begin(), v1.end(), MyPrintFunc);
        cout << endl;
    
        cout << "v2:" << endl;
        for_each(v2.begin(), v2.end(), MyPrintFunc);
        cout << endl;
    
        swap(v1, v2);
    
        cout << "交换后:" << endl;
    
        cout << "v1:" << endl;
        for_each(v1.begin(), v1.end(), MyPrintFunc);
        cout << endl;
    
        cout << "v2:" << endl;
        for_each(v2.begin(), v2.end(), MyPrintFunc);
        cout << endl;
    }
    
    int main()
    {
        test1601();
    
        system("pause");
        return 0;
    }
    

    相关文章

      网友评论

          本文标题:16.swap交换算法

          本文链接:https://www.haomeiwen.com/subject/gkgirltx.html