Splitting C linked list without making a copy

前端 未结 0 688
广开言路
广开言路 2020-12-21 03:43

I have this struct:

typedef struct node {
   struct node *m_Next;
   int id;
} NODE;

And I need to split linked list in half. If it can\'t be

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