6

对于下面的代码

struct orderSlip
{
    char source[64];
    char destination[64];
    char item[64];  
    int position;
};
//global
struct orderSlip data[100];

除了以下这些方法之外,还有其他方法可以打印出每个元素的数据:

printf("%s\n",data[0].source);
    printf("%s\n",data[0].destination);
    printf("%s\n",data[0].item);
    printf("%i\n\n", data[0].position);

    printf("%s\n",data[1].source);
    printf("%s\n",data[1].destination);
    printf("%s\n",data[1].item);
    printf("%i\n", data[1].position);

ETC

for(int n = 0; n< 3; n++)
{
    printf("%s\n",data[n].source);
    printf("%s\n",data[n].destination);
    printf("%s\n",data[n].item);
    printf("%i\n\n", data[n].position);
}

对于删除和添加,我是否必须制作一个动态的结构数组?如果是这样,那么最简单的语法是什么?像这样的 c++ 代码

int * bobby;
bobby = new int [5];
delete bobby[5];

但在 C? 我猜它与 malloc 和 free 有关

4

2 回答 2

6

对于删除和添加,我是否必须制作一个动态的结构数组?如果是,那么最简单的语法是什么?像这样的 c++ 代码

如果您知道您永远不会拥有超过 x 数量的物品,或者至少检查以确保您没有超过您计划的最大数量,则不会。然后你可以使用你的静态数组。

添加只需要你有一个变量来跟踪数组中有多少项:

void add_item(struct orderSlip *p,struct orderSlip a,int * num_items)
{
   if ( *num_items < MAX_ITEMS )
   {
      p[*num_items] = a;
      *num_items += 1;
   }
}

从静态数组中删除将需要一个 for 循环,该循环会将其上方的项目向下移动 1 并递减 int 以跟踪项目的数量。

void delete_item(struct orderSlip *p,int *num_items, int item)
{
   if (*num_items > 0 && item < *num_items && item > -1)
   {
      int last_index = *num_items - 1;
      for (int i = item; i < last_index;i++)
      {
         p[i] = p[i + 1];
      }
      *num_items -= 1;
   }
}

您可以通过将结构传递给完成工作的函数来简化打印结构。

void print(const struct orderSlip  *p);

或者

void print(const struct orderslip s);

可选

void print(const struct orderslip s, FILE *fp);

或者

void print(const struct orderslip *p, FILE *fp)
{
   fprintf(fp,"%s\n",p->source);
    ...
}

void print_all(const struct orderSlip *p, int num_items)



//global
struct orderSlip data[MAX_ITEMS];
int num_items = 0;



int main(void)
{
...
       print_all(data,num_items);                                       
       strcpy(a.source,"source 2");
       strcpy(a.destination,"destination 20");
       strcpy(a.item,"item xyz");
       a.position = 99;
       add_item(data,a,&num_items);
       print_all(data,num_items);
       delete_item(data,&num_items,0);
       print_all(data,num_items);
于 2012-08-22T04:39:16.533 回答
3

一种方法是分配数组中的每个元素并只保留一个指针数组

struct orderSlip **data;

data = calloc(100, sizeof(struct orderSlip*)); // 100 pointers to struct

(calloc 将确保内存为零:从一开始就编辑)

每次添加新结构时:

data[i] = calloc(1, sizeof(struct orderSlip));

当你不再需要时

free(data[i]);

您还可以使用 realloc 更改数据的大小,请参阅

如果您不需要使用索引访问数组,则可以考虑另一种类型的数据结构,如链表,是真正动态的。

于 2012-08-22T04:54:17.687 回答