2014年8月13日
摘要: #include using namespace std;struct Node{ Node *next; int data;};void createCircle(Node* &L,int n,int k){ int i = 0; Node*p = L; p ... 阅读全文
posted @ 2014-08-13 22:12 Clivia_zhou 阅读(452) 评论(0) 推荐(0) 编辑