پاسخ : آمادگی برای مرحله ۳
اتل متل:
#include<iostream>
using namespace std;
struct list{int am,next,back;}list[1000];
int n,k;
int del(int s,int h){
if(h==k)return s;
return del(list[s].next,h+1);
}
int B_G(int x,int s){
if(x==1)return list[s].am;
int e=del(s,1);
list...