C - 插入现有数组

时间:2015-10-23 18:33:10

标签: c arrays

我已经写了两个函数,但是我把它们合并在一起很麻烦。这是我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//prototypes:
int insert(char *word, char *Table[], int n);

int main(void)
{
    char buf[100];
    char *token;

    printf("Enter a string: ");
    fgets(buf, sizeof(buf), stdin);

    token = strtok(buf, " ,.-";

    while(token != NULL)
    {
        printf("%s\n", token);
        token = strtok(NULL, " ,.-");
    }
    return 0;
}
int insert(char *word, char *Table[], int n)
{
//*word is the string to be added, *Table is the array, n is the amount of things in array
//after insertion
    #define MAXSTRINGS 5
    #define LENSTRING 100

    int counter = 0;
    n = sizeof(Table)/sizeof(int);

    while(counter < MAXSTRINGS && strlen(Table[counter]))
    {
        if (strcmp(Table[counter], word) == 0)
        {
            return n;
            break;
        }
        else
        {
            counter++;
        }
    }
    strcpy(Table[counter], word);
    prinf("\n added at %d", counter);
    return n;
}

如何在主函数中添加insert函数以将标记化字符串带入数组?例如,如果我输入“dog is brown”,它会被标记为“dog”,“is”,“brown”,然后我想将每个单词插入表中。我无法完全绕过它。有人能指出我正确的方向吗?

2 个答案:

答案 0 :(得分:0)

假设你将在main返回后丢弃该表,你应该在main中分配一个表结构,然后当你得到你的令牌时,找出它的大小并用你分配的表调用insert函数,令牌指针及其大小n。

答案 1 :(得分:0)

如果我正确理解您的问题,您希望将所有单词插入表格中。您不需要insert函数,而是可以向主函数添加数组(table),然后使用strdup自动为表分配内存。记住你之后需要释放它!

token = strtok(buf, " ,.-");

while(token != NULL)
{
  table[i] = strdup(token);
  i++;
  token = strtok(NULL, " ,.-");
}
int j;
for(j = 0; j < i; j++) {
  printf("%s\n", table[j]);
  free(table[j]);
}