摘要: 64页 E2(b)#include #include using namespace std; Error_code copy_stack(Stack&dest,Stack&source) { Error_code outcome=success; Stack temp; Stack_entry item; while(outcome==success&&!source.empty()){ outcome=source.top(item); outcome=source.pop(); if(outcome==success)outcome=temp.push(i 阅读全文
posted @ 2013-08-29 12:35 刘颖斌 阅读(177) 评论(0) 推荐(0)