所以我有一个名为 stationInfo 的结构,它有一堆信息,包括纬度、经度和车站 ID。我编写了一个函数,它将读取文件并将值存储到结构数组中。现在,我想将这些结构数组移动到另一个结构数组中。
MapMarker mapInfo[t];
int k;
for(k=0; k < MAX_STATIONS; k++){
mapInfo[k].location.latitude = stationInfo[k].location.latitude;
mapInfo[k].location.longitude = stationInfo[k].location.longitude;
char* stationName = getStationName(stationInfo[k].stationID);
strcpy(mapInfo[k].markerName, stationName);
}
但是,这破坏了我的程序。我怎样才能解决这个问题?
编辑:根据帕迪的要求:
mapMarker 结构:
typedef struct{
GeographicPoint location;
char markerName[100];
char markerText[1000];
int type;
} MapMarker;
GeographicPoint 位置分为纬度和对数结构。
char* getStationName(int stationID){
if (stationID < 0 || stationID >= MAX_STATIONS || !AllStationNames[stationID])
return "Unknown";
return AllStationNames[stationID];
} /* getStationName */
和阵列
char *AllStationNames[MAX_STATIONS] = {
[1] = "Ian Stewart Complex/Mt. Douglas High School",
[3] = "Strawberry Vale Elementary School",
...
[197] = "RASC Victoria Centre",
[199] = "Trial Island Lightstation",
[200] = "Longacre",
};