the seventh day - single linked list
重铸华农荣光 我辈义不容辞
the seventh day-single linked list
头插+数组模拟链表
#include<iostream>
using namespace std;
const int N=100010;
int head,e[N],ne[N],idx;
void init(){
head=-1;
idx=0;
}
//头插
void add_to_head(int x){
e[idx]=x,ne[idx]=head,head=idx++;
}
//在位置k添加结点x
void add(int k,int x){
e[idx]=x,ne[idx]=ne[k],ne[k]=idx++;
}
//删除
void remove(int k){
ne[k]=ne[ne[k]];
}
int main()
{
int n;
cin>>n;
init();
while(n--){
int k,x;
char op;
cin>>op;
if(op=='H'){
cin>>x;
add_to_head(x);
}else if(op=='D'){
cin>>k;
if(!k) head=ne[head];
remove(k-1);
}else{
cin>>k>>x;
add(k-1,x);
}
}
for(int i=head;i!=-1;i=ne[i]) cout<<e[i]<<" ";
return 0;
}