증가 순서에 따라 선두 노드 단일 체인 표 의 데이터 요 소 를 출력 하고 그 공간 을 방출 합 니 다.

#include "stdafx.h"
#include 
#include 
#include
typedef int type;
typedef struct lnode //            
{
    int data;
    struct lnode *next;
}Lnode;
typedef Lnode node;
typedef struct dnode//             
{
    int data;
    struct dnode *lnext;
    struct dnode *rnext;
}Dnode;
int  posprint9(node *h)
{
    //                          
    node *p = h->next; node *q = p;
    while (q->next)//        
    if (q->next->data >= q->data)
        q = q->next;
    else
    {
        if (q->next->data <= p->data)
        {
            h->next = q->next;
            q->next = q->next->next;
            h->next->next = p;
            //  print(h);
        }
        else
        {
            while (!(p->data <= q->next->data&&p->next->data >= q->next->data))
                p = p->next;
            node *tem = p->next;
            p->next = q->next;
            q->next = q->next->next;
            p->next->next = tem;
            //  print(h);
        }
        p = h->next;
    }
    //                
    p = h;
    q = h->next;
    while (q)
    {
        printf("%d ", q->data);
        p = q; q = q->next;
        free(p);
    }
    free(h);
    //                                     ,   o(n^2)      o(1);
    //   :                  ,                  
    //   node *p,*q,*tem;
    //   while(h->next){
    //   p=h;q=p->next;
    //   while(q->next)
    //   {
    //   if(q->next->datanext->data)
    //     p=q;
    //   else
    //   q=q->next;
    //   }
    //   printf("%d ",p->next->data);
    //   tem=p->next;
    //   p->next=p->next->next;
    //   free(tem)
    //}
    //   free(h);
    return 0;
}

좋은 웹페이지 즐겨찾기