How to merge two singly linked lists in C?

前端 未结 0 370
半阙折子戏
半阙折子戏 2020-12-21 02:10

I have this struct:

typedef struct NODE {
   struct NODE *next;
   int id;
   char name[64];
} node;

And I need to merge two lists like this:

相关标签:
回答
  • 消灭零回复
提交回复
热议问题