STL rope
Posted Optima
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STL rope相关的知识,希望对你有一定的参考价值。
头文件:#include <ext/rope>
命名空间:using namespace __gnu_cxx
rope test;
test.push_back(x);//在末尾添加x
ps:注意当test为rope<char>类型时只能添加单个字符而不能是字符串。
test.insert(pos,x);//在pos插入x
test.erase(pos,x);//从pos开始删除x个
test.copy(pos,len,x);//将pos开始长len个元素替换到x中
ps:注意当test为rope<char>类型时x只能为char[]而不能是string。
test.replace(pos,x);//将pos换成x
test.substr(pos,x);//提取pos开始x个
test.at(x)/[x];//访问第x个元素
test.clear();//清空元素
rope 内部是块状链表实现的,黑科技是支持 O(1)
复制,而且不会空间爆炸 (rope 是平衡树,拷贝时只拷贝根节点就行)。因此可以用来做可持久化数组。
拷贝历史版本的方式:
rope<int> *his[100000];
his[i] = new rope<int> (*his[i - 1]);
缺点是常数大 (C++ STL 的通病)。
还有一个叫 crope 的东西,crope 即 rope,可以用 cin/cout 直接输入输出,常用于字符串操作。
本文整理自网上资料。
C++ STL rope 可持久化平衡树 (可持久化数组)
官方文档好像 GG 了。
rope 不属于标准 STL,属于扩展 STL,来自 pb_ds 库 (Policy-Based Data Structures)。
基本操作:
#include <ext/rope> // 头文件
using namespace __gnu_cxx; // 注意名称空间
rope<int> rp;
int main()
rp.push_back(x); // 在末尾插入 x
rp.insert(pos, x); // 在 pos 处插入 x
rp.erase(pos, x); // 在 pos 处删除 x 个元素
rp.length(); // 返回 rp 的大小
rp.size(); // 同上
rp.replace(pos, x); // 将 pos 处的元素替换成 x
rp.substr(pos, x); // 从 pos 处开始提取 x 个元素
rp.copy(pos, x, s); // 从 pos 处开始复制 x 个元素到 s 中
rp[x]; // 访问第 x 个元素
rp.at(x); // 同上
return 0;
rope 内部是块状链表实现的,黑科技是支持 \(O(1)\) 复制,而且不会空间爆炸 (rope 是平衡树,拷贝时只拷贝根节点就行)。因此可以用来做可持久化数组。
拷贝历史版本的方式:
rope<int> *his[100000];
his[i] = new rope<int> (*his[i - 1]);
缺点是常数大 (C++ STL 的通病)。
还有一个叫 crope 的东西,crope 即 rope
以上是关于STL rope的主要内容,如果未能解决你的问题,请参考以下文章