kaiyuan941014 2014-12-12 00:52 采纳率: 0%
浏览 1834
已结题

求大神帮忙写到c语言的程序,关于体育场建筑物的!!谢谢

In this exercise you will design a structure in C that models a Major League Baseball stadium. You
will also write several supporting functions and methods that process and act on that data. Additional
details are provided in the stadium.h file.
The first step will be to design your structure(s). You will need to decide what fields and data types
should be included in this structure. At a minimum, you should support the following pieces of data:
• Stadium name
• Team name
• City
• State
• Year Built
• Latitude (scale: ["180, 180], negative is southern hemisphere)
• Longitude (scale: ["180, 180], negative is western hemisphere)
For completeness, we repeat how to compute the air distance between two latitude/longitude points
using the Spherical Law of Cosines:
d = arccos (sin('1) sin('2) + cos('1) cos('2) cos(")) • R
where
• '1 is the latitude of location A, '2 is the latitude of location B
• " is the di↵erence between location B’s longitude and location A’s longitude
• R is the (average) radius of the earth, 6,371 kilometers
Note: the formula above assumes that latitude and longitude are measured in radians r, "⇡  r  ⇡.
To convert from degrees deg ("180 < deg <180) to radians r, you can use the simple formula:
r = (deg /180)*PI

/**

  • Structure that models a Major League Baseball Stadium */ typedef struct { //TODO } Stadium;![]

typedef enum {
NAME,
TEAM,
AGE,
AGE_NEWEST,
STATE_CITY,
LATITUDE,
LONGITUDE,
} Order;

/**

  • A builder function to create an instance of a Stadium with
  • the provided values.
    */ Stadium * createStadium(const char *name, const char *teamName, const char *city, const char *state, int yearBuilt, double latitude, double longitude);

/**

  • A function to convert a Stadium instance to a human-readable
  • string representation. */ char * stadiumToString(const Stadium *s);

/**

  • Returns the air distance (using the Spherical Law of Cosines
  • between the two stadiums based on their latitude/longitude. */ double getAirDistance(const Stadium *s1, const Stadium *s2);

/**

  • Returns the total air distance between each contiguous
  • stadium in the given array containing n stadiums. */ double getAirDistances(const Stadium *stadiums, int n);

/**

  • Comaprator function that orders stadiums by their name (alphabetic order) */ int cmpStadiumByName(const void *s1, const void *s2);

/**

  • Comaprator function that orders stadiums by their team name (alphabetic order) */ int cmpStadiumByTeamName(const void*s1, const void*s2);

/**

  • Comaprator function that orders stadiums by their age (oldest first) */ int cmpStadiumByAge(const void*s1, const void*s2);

/**

  • Comaprator function that orders stadiums by their age (newest first) */ int cmpStadiumByAgeNewestFirst(const void*s1, const void*s2);

/**

  • Comaprator function that orders stadiums by first by their state
  • then by their city (alphabetic order) */ int cmpStadiumByStateCity(const void*s1, const void*s2);

/**

  • Comaprator function that orders stadiums by their name latitude, (south to north) */ int cmpStadiumByLatitude(const void*s1, const void*s2);

/**

  • Comaprator function that orders stadiums by their name longitude (west to east) */ int cmpStadiumByLongitude(const void*s1, const void*s2);

/**

  • A function that sorts the given array of stadiums (containing n elements) according
  • to the specified order.
    */ void sortStadiums(Stadium *stadiums, int n, Order order);
  • 写回答

2条回答

  • lxq_xsyu 博客专家认证 2014-12-15 10:23
    关注

    这很考验英语功底啊!!

    评论

报告相同问题?

悬赏问题

  • ¥15 fluent的在模拟压强时使用希望得到一些建议
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 Web.config连不上数据库
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。
  • ¥15 怎么配置广告联盟瀑布流
  • ¥15 Rstudio 保存代码闪退