摘要:
#include<stdio.h> int gy(int m,int n) {int r; if(m<n){ r=m; m=n; n=r; } for(r=n;r>=2;r--){ if(m%r==0 && n%r==0) return(r); }} main() {int x,y; scanf(" 阅读全文
摘要:
#include<stdio.h> struct node{ int weight; //权值 int parent; //双亲节点 int lchild,rchild; //左孩子右孩子 }; main() { struct node ht[1000]; int w[1000]; //权值 int 阅读全文