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 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?