回 帖 发 新 帖 刷新版面

主题:课程设计题!哪位高手帮帮忙啊!(语言表示)急!!!!

题目:is it a tree?
A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edges between nodes satisfying the following properties. 
1.There is exactly one node, called the root, to which no directed edges point. 
2.Every node except the root has exactly one edge pointing to it. 
3.There is a unique sequence of directed edges from the root to each node. 
For example, consider the illustrations below, in which nodes are represented by circles and edges are represented by lines with arrowheads. The first two of these are trees, but the last is not.
In this problem you will be given several descriptions of collections of nodes connected by directed edges. For each of these you are to determine if the collection satisfies the definition of a tree or not. 

Input
The input consists of N test cases. The first line of the input contains the number N. Each test case will consist of K edge descriptions. Each text case starts with a line containing a positive integer K. Each edge description will consist of a pair of integers; the first integer identifies the node from which the edge begins, and the second integer identifies the node to which the edge is directed. Node numbers will always be greater than zero. 

Output
For each test case display the line ``Case k is a tree." or the line ``Case k is not a tree.", where k corresponds to the test case number (they are sequentially numbered starting with 1). 

Sample Input
3
5
6 8 5 3 5 2 6 4 5 6

8
8 1 7 3 6 2 8 9 7 5 7 4 7 8 7 6

6
3 8 6 8 6 4 5 3 5 6 5 2
Sample Output
Case 1 is a tree.
Case 2 is a tree.
Case 3 is not a tree.

回复列表 (共2个回复)

沙发

Wow,All English I do look not understand 

板凳


#include<iostream>
using namespace std;
int bin[50],tong[50],node[50];
int point,edge,flag;

int find(int x){
    int r=x;
    while(r!=bin[r])
        r=bin[r];
    int i=x;
    while (i!=r){
        int j=bin[i];
        bin[i]=r;
        i=j;
    }
    return r;
}

void toknow(int k){
    if (node[k]==0){
        node[k]=1;
        point++;
    }
}

int m,n,k=0;
int main(){
    while(cin>>m>>n){
        if (m<0||n<0) break;
        flag=point=edge=0;
        memset(bin,0,sizeof(bin));
        memset(tong,0,sizeof(tong));
        memset(node,0,sizeof(node));
        if (m==0 && n==0) {cout<<"Case "<<++k<<" is a tree."<<endl; continue;}
        toknow(m);
        toknow(n);
        tong[n]=m;
        bin[m]=n;
        edge++;
        while(cin>>m>>n){
            if (m==0&&n==0) break;
            if (!flag){
            int x1,y1;
            toknow(m);
            toknow(n);
            if (tong[n]!=0)
                flag=1;
            x1=find(m);
            y1=find(n);
            if (x1==0 && y1==0){
                bin[m]=n;
                tong[n]=m;
            }
            else if (m==n)
                flag=1;
            else{
                if (node[n]!=0)
                    flag=1;
                else
                    tong[n]=m;
                bin[m]=n;
            }
            
            edge++;
            }
        }
        if (flag || point!=(edge+1))
            cout<<"Case "<<++k<<" is not a tree."<<endl;
        else
            cout<<"Case "<<++k<<" is a tree."<<endl;
    }
    return 0;
}


自己写的代码,风格有点不好,凑合看一下。[em2][em2]

我来回复

您尚未登录,请登录后再回复。点此登录或注册