性能思考

int swap(){
//    int temp = stack[top_index];
//    top_index --;
//    return temp
    return stack[top_index --];
}

Last updated

Was this helpful?