题解 1895: 蓝桥杯算法提高VIP-队列操作

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

python 也就五六行吧 100

摘要:n=int(input().strip());la=[] for i in range(n):     l=list(map(int,input().split()))     if len(l……

顺序栈---基本方法

摘要:#include<stdio.h> #include<stdlib.h>#include<malloc.h>#define maxsize 50using namespace std;typedef ……