c 언어 단일 체인 테이블의 각종 조작
#include<stdio.h>
#include<stdbool.h>
struct Node
{
int val;
Node* next;
};
Node* Create()
{
bool bFlag=true;
Node *pHead=NULL;
Node *pCur=NULL;
Node* pTemp=NULL;
int nVal;
pHead=(Node*)malloc(sizeof(Node));
if(NULL==pHead)
{
return NULL;
}
pHead->next=NULL;
pCur=head;
while(bFlag)
{
pTemp=(Node*)malloc(sizeof(Node));
printf("please input node value,if the value is 0 input finished.");
scanf("%d",&nVal);
if(nVal!=0)
{
pTemp->val=nVal;
pTemp->next=NULL;
pCur->next=pTemp;
pCur=pTemp;
}
else
{
bFlag=false;
}
}
pHead=pHead->next;
pCur->next=NULL;
return pHead;
}
int length(Node* head)
{
if(head==NULL)
{
return 0;
}
int i=0;
Node* cur=head;
while(cur!=NULL)
{
i++;
cur=cur->next;
}
return i;
}
bool print(Node *head)
{
if(NULL==head)
{
return false;
}
printf("list info:");
Node *cur=head;
while(NULL!=cur)
{
printf("%d
",cur->val);
cur=cur->next;
}
return true;
}
Node* del(Node* head, int pos)
{
if((head==NULL)||(pos<1)||(pos>length(head)))
{
return NULL;
}
Node* cur=head;
if(pos==1)
{
cur=cur->next;
free(head);
head=NULL;
return cur;
}
//
int i=0;
for(i=0;i<pos-1;i++)
{
cur=cur->next;
}
cur->next=cur->next->next;
return head;
}
Node* addafterpos(Node *head, int pos, int val)
{
if((head==NULL)||(pos<1)||(pos>length(head)))
{
return NULL;
}
Node* newnode=(Node*)malloc(sizeof(Node));
if(newnode==NULL)
{
return NULL;
}
newnode->val=val;
newnode->next=NULL;
Node* cur=head;
if (pos==length(head))
{
while(cur->next!=NULL)
{
cur=cur->next;
}
cur->next=newnode;
}
int i=0;
for(i=0;i<pos;i++)
{
cur=cur->next;
}
newnode=cur->next;
cur->next=newnode;
return head;
}
Node* insertbefore(Node* head, int pos, int val)
{
if((head==NULL)||(pos<1)||(pos>length(head)))
{
return NULL;
}
Node* newnode=(Node*)malloc(sizeof(Node));
if(newnode==NULL)
{
return NULL;
}
newnode->val=val;
newnode->next=NULL;
Node* cur=head;
if(pos==1)
{
newnode->next=cur;
return newnode;
}
int i=0;
for(i=0;i<pos-1;i++)
{
cur=cur->next;
}
newnode->next=cur->next;
cur->next=newnode;
return head;
}
int main()
{
Node *head;
int len;
head=Create();
len=length(head);
printf("len:%d", len);
print(head);
head=del(head,1);
print(head);
head=addafterpos(head,4,5);
print(head);
head=insertbefore(head,1,1);
print(head);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.