I have a problem in Linked-list by C(with first node is empty)

前端 未结 0 1618
醉酒成梦
醉酒成梦 2021-01-14 01:55
struct process {
  int id;
  struct process * prev;
  struct process * next;
}

struct process * ready = NULL;
struct process * running;

int main() {
  struct proce         


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