找树根和孩子
2018-06-17 22:58:52来源:未知 阅读 ()
1 #include<iostream> 2 using namespace std; 3 int tree[101]; 4 int maxn=0; 5 int maxnroot; 6 int main() 7 { 8 int n,m; 9 int root=-1; 10 cin>>n>>m; 11 for(int i=1;i<=m;i++) 12 { 13 int x,y; 14 cin>>x>>y; 15 tree[y]=x; 16 } 17 for(int i=1;i<=n;i++) 18 { 19 if(tree[i]==0) 20 { 21 root=i; 22 } 23 } 24 for(int i=1;i<=n;i++) 25 { 26 int sum=0; 27 for(int j=1;j<=n;j++) 28 { 29 if(tree[j]==i) 30 { 31 sum++; 32 } 33 } 34 if(sum>maxn) 35 { 36 maxn=sum; 37 maxnroot=i; 38 } 39 } 40 cout<<root<<endl; 41 cout<<maxnroot<<endl; 42 for(int i=1;i<=n;i++) 43 { 44 if(tree[i]==maxnroot) 45 { 46 cout<<i<<" "; 47 } 48 } 49 return 0; 50 }
父亲孩子表示法
1 #include<iostream> 2 using namespace std; 3 int tree[101]; 4 int maxn=0; 5 int maxnroot; 6 int main() 7 { 8 int n,m; 9 int root=-1; 10 cin>>n>>m; 11 for(int i=1;i<=m;i++) 12 { 13 int x,y; 14 cin>>x>>y; 15 tree[y]=x; 16 } 17 for(int i=1;i<=n;i++) 18 { 19 if(tree[i]==0) 20 { 21 root=i; 22 } 23 } 24 for(int i=1;i<=n;i++) 25 { 26 int sum=0; 27 for(int j=1;j<=n;j++) 28 { 29 if(tree[j]==i) 30 { 31 sum++; 32 } 33 } 34 if(sum>maxn) 35 { 36 maxn=sum; 37 maxnroot=i; 38 } 39 } 40 cout<<root<<endl; 41 cout<<maxnroot<<endl; 42 for(int i=1;i<=n;i++) 43 { 44 if(tree[i]==maxnroot) 45 { 46 cout<<i<<" "; 47 } 48 } 49 return 0; 50 }
父亲孩子表示法
1 #include<iostream> 2 using namespace std; 3 struct node 4 { 5 int parent; 6 int child[101]; 7 int hzsl; 8 int date; 9 }tree[101]; 10 int main() 11 { 12 int n,m; 13 cin>>n>>m; 14 for(int i=1;i<=m;i++) 15 { 16 int x,y; 17 cin>>x>>y; 18 tree[x].child[tree[x].hzsl]=y; 19 tree[x].hzsl++; 20 tree[y].parent=x; 21 } 22 for(int i=1;i<=n;i++) 23 { 24 if(tree[i].parent==0) 25 { 26 cout<<i<<endl; 27 } 28 } 29 int maxn=0; 30 int maxnroot=0; 31 for(int i=1;i<=n;i++) 32 { 33 if(tree[i].hzsl>maxn) 34 { 35 maxn=tree[i].hzsl; 36 maxnroot=i; 37 } 38 } 39 cout<<maxnroot; 40 for(int i=0;i<tree[maxnroot].hzsl;i++) 41 { 42 cout<<tree[maxnroot].child[i]<<" "; 43 } 44 return 0; 45 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 树、森林与二叉树的转换 2020-02-14
- 植物大战僵尸辅助 2019-10-25
- C指针(2)——指针在函数中的应用(程序讲解) 2018-12-04
- 洛谷P1316 丢瓶盖 2018-06-17
- CSP201403-1:相反数 2018-06-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash