91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

鏈表結點的刪除(有重復)

發布時間:2020-06-30 04:32:39 來源:網絡 閱讀:351 作者:閆寶通 欄目:編程語言
#include<stdio.h>
#include<stdlib.h>
#define N 9
typedef struct node{
   int  data;
   struct node * next;
}ElemSN;
ElemSN  * Createlink(int a[],int n){            //逆向創建單向鏈表
    int i;
    ElemSN * h=NULL, * p;
    for( i=N-1;i>=0;i--){
       p=(ElemSN *)malloc(sizeof(ElemSN));
       p->data =a[i];
       p->next=h;
       h=p;
    }
    return h;
   }
 void Printlink(ElemSN * h){
   ElemSN * p;
   for(p=h;p;p=p->next)
	  pintf("%2d\n",p->data);
   }
 ElemSN * DelSamenode(ElemSN*h,int key){  
	 ElemSN * p,* q;
	 p=h;
	 while(p){              //p不為空
	  if(p->data!=key) {            //未找到key
	    q=p;            //兩指針聯動
		p=p->next;
	  }                            
      else{                         //key找到p指針指著key
    	if(p!=h){                  //判斷是否為頭結點 不是頭結點
    	  q->next=p->next;
    	    free(p);
    	    p=q->next;
    	}
	    else{                        //是頭結點
		   h=h->next;
		  free(p);
		  p=h;
		}
	  }
	}
	return h;
  }
int main(void){
	 int a[]={3,2,9,8,9,7,9,6,1};
	 int key;
     ElemSN * head;
	 head=Createlink(a,9);
	 printf("key=");
	 scanf("%2d",&key);
     head=DelSamenode(head,key);
	 Printlink(head);
 }


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

印江| 会东县| 巴中市| 鲁山县| 南阳市| 南安市| 密山市| 新疆| 绥宁县| 邵东县| 滨海县| 集安市| 禄劝| 溆浦县| 时尚| 申扎县| 乐安县| 尖扎县| 河间市| 耒阳市| 理塘县| 呼玛县| 林州市| 洛南县| 吐鲁番市| 铅山县| 盱眙县| 五常市| 安化县| 如东县| 肥乡县| 都兰县| 绥江县| 岳池县| 五原县| 横山县| 兖州市| 祁阳县| 长白| 瑞安市| 新绛县|