算法常用C++总结

栈(stack)

stack实现了一种先进后出的数据结构,使用时需要包含stack头文件

C++定义一个stack:

stack s;  //int为栈的数据类型,也可以为string,double等

C++中stack的基本操作有:

1、出栈:如 s.pop() 注意并不返回出栈的元素 
2、进栈:如 s.push(x) 
3、访问栈顶元素:如s.top(); 
4、判断栈空:如 s.empty() 栈为空时返回true 
5、返回栈中元素个数,如:s.size()

例子:

#include 
#include 

using namespace std;

int main(int argc, char const *argv[])
{
    stack s;

    for (int i = 0; i < 10; i++) {
        s.push(i);
    }
    cout << s.empty() << endl;

    for (int i = 0; i < 10; i++) {
        cout << s.top() << endl;
        s.pop();
    }
    cout << s.empty() << endl;

    return 0;
}

动态数组(vector)

C++中的vector是一个可以改变大小的数组,当解题时无法知道自己需要的数组规模有多大时可以用vector来达到最大节约空间的目的。使用时需要包含vector头文件。

定义一个一维动态数组的语法为:

vector a;  //int为该动态数组的元素数据类型,也可以为string、double等

定义一个二维动态数组的语法为

vector a; //三维数据类型为int**,以此类推。

C++中vector的基本操作有:

1、push_back(x) 在数组的最后添加元素x。 
2、pop_back() 删除最后一个元素,无返回值。 
3、at(i) 返回位置i的元素。 
4、begin() 返回一个迭代器,指向第一个元素。 
5、end() 返回一个迭代器,指向最后一个元素的下一个位置。 
6、front() 返回数组头的引用。 
7、capacity(x) 为vector分配空间 
8、size() 返回数组大小 
9、resize(x) 改变数组大小,如果x比之前分配的空间大,则自动填充默认值。 
10、insert 插入元素
①a.insert(a.begin(),10); 将10插入到a的第一个元素前。 
②a.insert(a.begin(),3,10) 在a的第一个元素前插入三个10。 
11、erase 删除元素
①a.erase(a.begin()); 将起始位置的元素删除。 
②a.erase(a.begin(),begin()+2); 将0~2之间的元素删除。 
12、rbegin() 返回一个逆序迭代器,它指向最后一个元素。 
13、rend() 返回一个逆序迭代器,它指向的第一个元素前面的位置。 
14、clear()清空所有元素。

例子:

#include 
#include 
#include 

using namespace std;

int main(int argc, char const *argv[])
{
    vector a;
    vector b;

    for (int i = 0; i < 10; ++i) {
        a.push_back(i);
    }

    a.swap(b);  // 将数组a元素与数组b元素交换
    cout << a.size() << " " << b.size() << endl;  // 输出:0 10

    for (vector::iterator it = b.begin(); it != b.end(); ++it) {
        cout << *it << " ";  // 输出: 0 1 2 3 4 5 6 7 8 9
    }
    cout << endl;

    b.erase(b.begin() + 1);  // 删除位置1的元素,即元素1.
    cout << b.size() << endl;  //输出:9

    for (vector::reverse_iterator rit = b.rbegin(); rit != b.rend(); ++rit) {
        cout << *rit << " ";  // 逆向输出数组元素:9 8 7 6 5 4 3 2 0
    }
    cout << endl;

    b.resize(11);  // 将数组空间设定为11
    b.push_back(20);

    for (vector::iterator it = b.begin(); it != b.end(); ++it) {
        cout << *it << " ";  // 输出:0 2 3 4 5 6 7 8 9 0 0 20 
    }
    cout << endl;

    b.insert(b.begin(), 100);  // 在开始第一个元素前插入100

    for (vector::iterator it = b.begin(); it != b.end(); ++it) {
        cout << *it << " ";  // 输出: 100 0 2 3 4 5 6 7 8 9 0 0 20 
    }
    cout << endl;

    b.insert(b.begin() + 5, 3, 100);  // 在第六个元素前插入三个100

    for (vector::iterator it = b.begin(); it != b.end(); ++it) {
        cout << *it << " ";  // 输出: 100 0 2 3 4 5 6 7 8 9 0 0 20 
    }
    cout << endl;

    return 0;
}

 

你可能感兴趣的:(算法)