我应该为这种数据使用什么数据结构?

时间:2017-04-14 09:36:41

标签: c arrays data-structures struct typedef

我的数据如下:

University {

    Society {

        LibrariesList 
            Library {

                Name: "Central Library"
                BuildingNumber: 23b
                Address {
                    Electronic Address: "blahblah blah"
                    Phone: 12345677
                    Street Address {
                        Num:4
                    }
                }
                Code:43

            }
        DepartmentsList:1

    }

}

我必须将它存储在我的C程序中。我是C的初学者,不知道用于这种事情的数据结构。那么我应该使用什么数据结构?

1 个答案:

答案 0 :(得分:1)

我认为你正在寻找这样的东西。

struct stradr
{
      int num;
};

struct add
{
      char electronicAddress[100];
      unsigned int phone;
      struct stradr streetAddress;
};

struct lib
{
      char name[100];
      char BuildingNo[5];
      struct add address;
};

struct libList
{
       struct lib library;
       int code;
};

struct scty
{
        struct libList librarieslist;
        int departList;
};

struct unvrsty
{
        struct scty society;
} university;

从c中的数据结构来看,我不认为C可以一起处理字符串和整数。可能有更好的方法,但考虑到你说你是初学者,那实现起来会太复杂了:)