Как правильно читать и записывать в массив строки в C

#arrays #c #pointers #char

#массивы #c #указатели #обугленный

Вопрос:

Я хочу создать массив строк на C. (Я знаю, что C не включает в себя такое понятие, как string. Я имею в виду символ * как строку)

Я читаю из текстового файла слово за словом. Чем помещать его в массив строк, чем пытаться снова получить доступ к этому массиву строк.

Вот мой код

 char x[MAX_WORD_LENGTH   1];
char** wordsInDocument;
int wordCount = 1;
/*M defined as 997 which is max word count in a file*/
wordsInDocument = malloc(M * sizeof(char*));
int i = 0;
/* MAX_WORD_LENGTH defined as 200 */
while (fscanf(f, "  0s", amp;x) == 1) {
    wordsInDocument[i] = malloc((MAX_WORD_LENGTH   1) * sizeof(char));
    wordsInDocument[i] = x;
    printf("Here wordCount : %d i : %d x : %s wordsIndocument : %s [0]th element : %s  n",wordCount, i,amp;x ,wordsInDocument[i],wordsInDocument[0]);
    wordCount  ;
    i  ;
}

wordsInDocument = realloc(wordsInDocument, (wordCount ) * sizeof(char*));


for (i = 0; i < wordCount-1; i  ) {
    printf("WordsInDocument [%d] = %sn",i, wordsInDocument[i]);
}
 

Моя функция считывает из файла слово за словом. Здесь нет проблем. Но я не могу правильно вставить массив «wordInDocument». Из-за этого первый элемент всегда является последним элементом, который считывается из файла.

Вот некоторые выходные данные CMD, чтобы показать, что я имею в виду.

 Here wordCount : 1 i : 0 x : ballpark wordsIndocument : ballpark [0]th element : ballpark
Here wordCount : 2 i : 1 x : figure wordsIndocument : figure [0]th element : figure
Here wordCount : 3 i : 2 x : enterprise wordsIndocument : enterprise [0]th element : enterprise
Here wordCount : 4 i : 3 x : milestone wordsIndocument : milestone [0]th element : milestone
Here wordCount : 5 i : 4 x : stack wordsIndocument : stack [0]th element : stack
Here wordCount : 6 i : 5 x : vertical wordsIndocument : vertical [0]th element : vertical
Here wordCount : 7 i : 6 x : platform wordsIndocument : platform [0]th element : platform
Here wordCount : 8 i : 7 x : agile wordsIndocument : agile [0]th element : agile
Here wordCount : 9 i : 8 x : workflow wordsIndocument : workflow [0]th element : workflow
Here wordCount : 10 i : 9 x : core wordsIndocument : core [0]th element : core
Here wordCount : 11 i : 10 x : competency wordsIndocument : competency [0]th element : competency
Here wordCount : 12 i : 11 x : stand-up wordsIndocument : stand-up [0]th element : stand-up
Here wordCount : 13 i : 12 x : market wordsIndocument : market [0]th element : market
Here wordCount : 14 i : 13 x : focus wordsIndocument : focus [0]th element : focus
Here wordCount : 15 i : 14 x : standard wordsIndocument : standard [0]th element : standard
Here wordCount : 16 i : 15 x : setter wordsIndocument : setter [0]th element : setter
Here wordCount : 17 i : 16 x : industry wordsIndocument : industry [0]th element : industry
Here wordCount : 18 i : 17 x : leader wordsIndocument : leader [0]th element : leader
Here wordCount : 19 i : 18 x : deliverable wordsIndocument : deliverable [0]th element : deliverable
Here wordCount : 20 i : 19 x : game wordsIndocument : game [0]th element : game 
Here wordCount : 21 i : 20 x : changer wordsIndocument : changer [0]th element : changer
Here wordCount : 22 i : 21 x : brand wordsIndocument : brand [0]th element : brand
Here wordCount : 23 i : 22 x : organic wordsIndocument : organic [0]th element : organic
Here wordCount : 24 i : 23 x : growth wordsIndocument : growth [0]th element : growth
Here wordCount : 25 i : 24 x : alignment wordsIndocument : alignment [0]th element : alignment
Here wordCount : 26 i : 25 x : best wordsIndocument : best [0]th element : best 
Here wordCount : 27 i : 26 x : practice wordsIndocument : practice [0]th element : practice
Here wordCount : 28 i : 27 x : standpoint wordsIndocument : standpoint [0]th element : standpoint
Here wordCount : 29 i : 28 x : bandwidth wordsIndocument : bandwidth [0]th element : bandwidth
Here wordCount : 30 i : 29 x : emerging wordsIndocument : emerging [0]th element : emerging
Here wordCount : 31 i : 30 x : market wordsIndocument : market [0]th element : market
Here wordCount : 32 i : 31 x : architecture wordsIndocument : architecture [0]th element : architecture
Here wordCount : 33 i : 32 x : big wordsIndocument : big [0]th element : big
Here wordCount : 34 i : 33 x : data wordsIndocument : data [0]th element : data 
Here wordCount : 35 i : 34 x : enterprise wordsIndocument : enterprise [0]th element : enterprise
Here wordCount : 36 i : 35 x : stakeholder wordsIndocument : stakeholder [0]th element : stakeholder
Here wordCount : 37 i : 36 x : user wordsIndocument : user [0]th element : user 
Here wordCount : 38 i : 37 x : experience wordsIndocument : experience [0]th element : experience
Here wordCount : 39 i : 38 x : diversity wordsIndocument : diversity [0]th element : diversity
Here wordCount : 40 i : 39 x : driver wordsIndocument : driver [0]th element : driver
Here wordCount : 41 i : 40 x : cloud wordsIndocument : cloud [0]th element : cloud
Here wordCount : 42 i : 41 x : proposition wordsIndocument : proposition [0]th element : proposition
Here wordCount : 43 i : 42 x : low wordsIndocument : low [0]th element : low
Here wordCount : 44 i : 43 x : hanging wordsIndocument : hanging [0]th element : hanging
Here wordCount : 45 i : 44 x : fruit wordsIndocument : fruit [0]th element : fruit
Here wordCount : 46 i : 45 x : silo wordsIndocument : silo [0]th element : silo 
Here wordCount : 47 i : 46 x : prince2 wordsIndocument : prince2 [0]th element : prince2
Here wordCount : 48 i : 47 x : practitioner wordsIndocument : practitioner [0]th element : practitioner
Here wordCount : 49 i : 48 x : step-change wordsIndocument : step-change [0]th element : step-change
Here wordCount : 50 i : 49 x : core wordsIndocument : core [0]th element : core 
Here wordCount : 51 i : 50 x : asset wordsIndocument : asset [0]th element : asset
Here wordCount : 52 i : 51 x : synergy wordsIndocument : synergy [0]th element : synergy
Here wordCount : 53 i : 52 x : action wordsIndocument : action [0]th element : action
Here wordCount : 54 i : 53 x : point wordsIndocument : point [0]th element : point
Here wordCount : 55 i : 54 x : capability wordsIndocument : capability [0]th element : capability
Here wordCount : 56 i : 55 x : team wordsIndocument : team [0]th element : team 
Here wordCount : 57 i : 56 x : player wordsIndocument : player [0]th element : player
Here wordCount : 58 i : 57 x : paradigm wordsIndocument : paradigm [0]th element : paradigm
Here wordCount : 59 i : 58 x : shift wordsIndocument : shift [0]th element : shift
 

Я получаю приведенный выше вывод из этой строки:

 printf("Here wordCount : %d i : %d x : %s wordsIndocument : %s [0]th element : %s  n",wordCount, i,amp;x ,wordsInDocument[i],wordsInDocument[0]);
 

Как вы можете видеть, функция может получить текущее слово без проблем. Но он всегда отображается как первый элемент. Пример в строке 57 он пишет это.

 Here wordCount : 57 i : 56 x : player wordsIndocument : player [0]th element : player
 

Но он должен написать

 Here wordCount : 57 i : 56 x : player wordsIndocument : player [0]th element : ballpark
 

Потому что первое слово — «приблизительный стадион».

Из-за этого, когда я пытаюсь запустить эти строки кода :

 for (i = 0; i < wordCount-1; i  ) {
printf("WordsInDocument [%d] = %sn",i, wordsInDocument[i]);
}
 

Я всегда получаю «сдвиг». Потому что «сдвиг» — это последнее слово в текущем документе.

Я подозреваю, что эта линия :

 wordsInDocument[i] = x;
 

Но я не мог это исправить. Может ли кто-нибудь помочь мне с этим, пожалуйста?

Комментарии:

1. Ваше подозрение верно. Вместо wordsInDocument[i] = x; этого вы должны использовать strcpy() here .

2. Спасибо, это сработало. На самом деле я пробовал это несколько раз, прежде чем спрашивать здесь, но когда вы упоминаете об этом снова, я снова просматриваю весь код и понимаю, что не записывал -1 в WordCount в цикле for, когда я пытался strcpy() . Это способ, которым он раньше вызывал исключение. Теперь это работает. Большое вам спасибо.

Ответ №1:

Я меняю эту строку на :

 wordsInDocument[i] = x;
 

К этой строке :

 strcpy(wordsInDocument[i], x);
 

И это работает сейчас. Спасибо Джонни Моппу за быстрый ответ.