摘要:
02 线性结构4 Pop Sequence (25分) Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, ..., N and pop randomly. You are s 阅读全文
摘要:
Pointers and Constants 在 C++ 是下面这样的。 | | int i; | const int ci = 3; |: |: |: | | int ip; | ip = &i; | ip = &ci; // Error | const int cip; | cip = &i; 阅读全文