import java.math.*;
public class Main {
public static void main(String[]args) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int m=sc.nextInt();
List<Integer>list=new ArrayList<>();
for(int i=0;i<n;i++)list.add(sc.nextInt());
sc.nextLine();//要吃掉换行符,否则会报错
for(int i=1;i<=m;i++) {
String[] s=sc.nextLine().split(" ");
if(s[0].equals("DEL")) {
list.remove(Integer.valueOf(Integer.parseInt(s[1]))); n--;//删除特定的值,不是下标对应的值
}
else {
n++;
int index=list.indexOf(Integer.parseInt(s[1])); list.add(index,Integer.parseInt(s[2]));
}
}
System.out.println(n);
for(Integer i:list)System.out.print(i+" ");
}
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题8.9 (Java代码)浏览:1413 |
大小写转换 (C语言代码)浏览:904 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:1482 |
a+b浏览:452 |
1071题解浏览:585 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:756 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:653 |
C二级辅导-统计字符 (C语言代码)浏览:695 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:585 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:852 |