摘要:
栈的运用 mooc视频连接 #include <iostream> using namespace std; char S[100]; int Top, Number_of_Items = 0; void Push(char c) { if ( Number_of_Items == 0 ) { To 阅读全文
摘要:
#include <iostream> #include <stdio.h> using namespace std; int Q[100]; int Head, Tail, Number_of_Items = 0; void Enqueue(int x) { if( Number_of_Items 阅读全文
摘要:
A. Theatre Square time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Theatre Square in the c 阅读全文