• 2021-04-14
    设h是指向非空带表头结点的循环链表的头指针,p是辅助指针。执行程序段
    p=h;
    while(p->next->next!=h)
    p=p->next;
    p->next=h;
    后(其中,p->next为p指向结点的指针域),则()