摘要:
#include "stdafx.h"#include "stdlib.h"#includeusing namespace std;typedef struct node{ int value; node * next;}* LNode ;int main(int argc, char* argv[]){ LNode Inputlist(); void OutPutList(const LNode head); LNode Converse(LNode head); LNode head =Inputlist(); OutPutList(head); . 阅读全文