摘要:
#include #include typedef struct node *link;struct node { int item; link next;};link reverse(link x){ link r = NULL, y = x, t; while (y != NULL) { t = y->next; y->next = r; r = y; y = t; } return r;}int main(){ int i, N = 9; struct node head... 阅读全文
posted @ 2013-10-27 14:01
CJin
阅读(522)
评论(0)
推荐(0)

浙公网安备 33010602011771号