stl rope

Posted dancer16

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stl rope相关的知识,希望对你有一定的参考价值。

rope准确的中文翻译是可持久化平衡树,具牛逼

其貌似不是标准的stl容器,在名称空间__gnu_cxx中

其用起来和string差不多

s.insert(a,b) 在s的第a位插入b(b可为字符串)

s.erase(a,b)在s的第a位删除b

输出时直接将s[c]表示s的第c位数 

#include<iostream>
#include<algorithm>
#include<cstdio>
using namespace std;
using namespace __gnu_cxx;
#include<ext/rope>
crope s;
int main()
{
    int n;
    scanf("%d",&n);
    
    for(int i=1;i<=n;i++)
    {
        char ss=getchar();
        s.insert(0,ss);
    }
    for(int i=0;i<=n-1;i++)
    putchar(s[i]);
}

先脑补一下,并且这个东西使用平衡树实现的,很快!

 

以上是关于stl rope的主要内容,如果未能解决你的问题,请参考以下文章

stl rope

STL - rope 强大的字符串处理容器

(第三场) C Shuffle Cards STL_rope || splay

Sword STL容器分类介绍

Rope整理(可持久化神器)

Effective STL第1条:容器之(慎重选择容器类型)