ListPush(&head, 5);*/ListPrint(head);head=reverseBetween(head,1,2);ListPrint(head);ListFree(&head);return0;} 3.编译源码 $ gcc -o test test.c -std=c89 4.运行及其结果 $ ./test 5 2 3 2 5 3