链表+字符串,首先将字符串处理成一个数组,再模拟构造链表,按照操作进行增加和删除节点操作。 #include <bits/stdc++.h> using namespace std; const int N = 10000010; int idx, head, n[N], ne[N]; vector<int> nums; unordered_map<int, int> _map; // value - idx int new_value, old_value; inline int ctoi(char c) { return c -...