24.链表的逆置与合并 题目:1、对一个链表进行就地逆置2、对两个有序链表进行合并,合并为一个有序链表答案://20130130#include using namespace std;typedef struct node { int num; node* next;}node,*pnode;pnode makeList(const int s[],int n);void print 微软面试一百题 2024-06-16 37 点赞 0 评论 56 浏览