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

溫馨提示×

溫馨提示×

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

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

【list】 可用于哈夫曼樹的一種建樹 選數 的鏈表方法 替代堆

發布時間:2020-07-25 05:56:03 來源:網絡 閱讀:332 作者:wzdouban 欄目:編程語言
#include<stdio.h>
#include<stdlib.h>
#include<iostream>
using namespace std;
int a[]={1,2,3,4,5,6,7,8,9};
struct node
{
node(int xx):x(xx),next(NULL){}
int x; 
 node *next;
};
void fun()
{
 
}
int main()
{
node *head=new node(0);
node *p=head;
for(int i=0;i<9;i++)
{
node *add=new node(a[i]);
p->next=add;
p=add;
}

 node *q=head;
while(q)
{
cout<<q->x<<" ";
q=q->next;
}
cout<<endl;
  
 p=head->next;
q=p->next;
while(p->next!=NULL)
{

node *add=new node(p->x+q->x);
node  *qq=q; 
 while(add->x > qq->x && qq->next!=NULL)
     {
      qq=qq->next;
     }
  add->next=qq->next;
  qq->next=add;
  cout<<add->x<<endl;
p=q->next;
q=p->next;
}


 q=head;
while(q)
{
cout<<q->x<<" ";
q=q->next;
}
cout<<endl;
  
return 0;
}

[sts@bogon 20160731]$ g++ 0.cc
[sts@bogon 20160731]$ ./a.out
0 1 2 3 4 5 6 7 8 9                                       //鏈表的準備
3                                                         //新添加的結點
6
9
12
15
18
27
45 
0 1 2 3 3 4 5 6 6 7 8 9 9 12 15 18 27 45                  //最后的情況
[sts@bogon 20160731]$


向AI問一下細節

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

AI

玉门市| 沙湾县| 喜德县| 民勤县| 大理市| 鄂托克前旗| 黄骅市| 双流县| 临沧市| 江永县| 江都市| 桃园县| 淄博市| 泸水县| 临城县| 上栗县| 江阴市| 松潘县| 白河县| 阜新市| 泰兴市| 项城市| 麦盖提县| 宁安市| 新建县| 仁化县| 玛纳斯县| 永吉县| 清徐县| 府谷县| 长治县| 博客| 瓦房店市| 嘉义市| 崇仁县| 洛浦县| 花垣县| 千阳县| 南安市| 恭城| 溧阳市|