人生赢家
2018年10月13日
front指向头节点,头节点指向一个空节点,同时rear指向空节点。插入新节点p: p-> next = NULL; rear -> next = p; rear = p; front -> next = p;