【单选题】The operation of removing an element from the stack is said to( )the stack.
【单选题】There are two common types in page replacement algorithm: stack and non-stack strategies. When a real page number increase only stack algorithm can increase the hit rate monotonously. In the following...
【单选题】有下列程序: #include<iosteram.h> using namespace std class Stack { public: Stack(unsignedn=10):size(n){rep_=new int [size]top=O} Stack(Stack&s):size(s.size) { rep_=new int[size] fo
【单选题】What is the content of stack pointer (SP)?
A.
address of the current instruction
B.
address of the next instruction
C.
address of the top element of the stack
【单选题】There are two common types in page replacement algorithm : stack and non-stack strategies.When a real page number increase only stack algorithm can increase the hit rate monotonously.In the following ...
【单选题】The following is not the basic operation of the stack? ( )
A.
Insert a new element at the top of stack
B.
Adding an element at a random location k.
C.
Determines if stack is empty
D.
Reads the value of stack top
【单选题】有如下程序: #include <iostream.h> using namespace std; class Stack { public: Stack(unsigned n=10):size(n){rep_=new int [size]; top=0;} Stack(Stack&s): size (s.size) { rep_=new int[size]; for (int i=0;i<siz...
【单选题】有如下程序: #include <iostream> using namespace std; class Stack { public: Stack(unsigned n= 10):size(n) {rep_=ew int[size]; top=0;} Stack(Stack& s):size(s.size) { rep_=new int[size]; for(int i=0;i<size;i+...