亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

【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

武定县| 基隆市| 台湾省| 吉安县| 桂阳县| 自贡市| 抚远县| 乾安县| 天祝| 西藏| 焦作市| 镇赉县| 兴仁县| 余姚市| 孝昌县| 古浪县| 天气| 万荣县| 兴化市| 上思县| 普兰县| 申扎县| 黄大仙区| 调兵山市| 丽水市| 勃利县| 贡山| 察哈| 资源县| 池州市| 花莲市| 潮安县| 陵川县| 定边县| 呼和浩特市| 和田市| 马龙县| 康平县| 新竹县| 上虞市| 辰溪县|