증가 순서에 따라 선두 노드 단일 체인 표 의 데이터 요 소 를 출력 하고 그 공간 을 방출 합 니 다.
1940 단어 데이터 구조 와 알고리즘
#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;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[JAVA] 배열 회전 출력요소 가 출력 을 시작 하 는 위치 에 주의 하 십시오. 모두 몇 라운드 의 수출 이 있 습 니까? n/2 + 1 매 라 운 드 는 상, 우, 하, 좌 로 나 뉜 다. 각 방향의 시작 위치 와 좌표 의 관 계 를 구...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.