#c #pointers #data-structures #memcpy
#c #указатели #структуры данных #memcpy
Вопрос:
Я более или менее новичок в использовании указателей в C, так что извините, если я допускаю какие-то ужасные ошибки! В этом случае я просто пытаюсь скопировать все элементы вектора с плавающей запятой в другой.
У меня есть следующий фрагмент кода внутри моего основного файла.c, который отлично работает:
/* NOTE: hash_list is a global variable*/
void insertDataIntoOurHashList(int dia, int delay, char *aeO, char *aeD){
unsigned int numHash;
ListData *listData;
numHash = getHashValue(aeO);
/* If there's no list yet in this position, then... */
if (hash_list[numHash] == NULL) {
hash_list[numHash] = malloc(sizeof(List));
initList(hash_list[numHash]);
listData = malloc(sizeof(ListData));
listData->key = malloc(sizeof(char*)*strlen(aeD) 1);
strcpy(listData->key, aeD);
listData->key_sec = malloc(sizeof(char*)*strlen(aeO) 1);
strcpy(listData->key_sec, aeO);
listData->numTimes = 1;
listData->retrasos = (float*) malloc(sizeof(float)*7);
listData->retrasos[dia-1] = delay;
insertList(hash_list[numHash], listData);
}
else {
listData = findList2(hash_list[numHash],aeD,aeO);
/* If already exists a data with both equals keys, then... */
if (listData != NULL) {
listData->numTimes ; // We add in one the counter of the list
listData->retrasos[dia-1] = listData->retrasos[dia-1] delay / 2;
}
/* If exists a data with the same aeD as primary key but not with the aeO as secundary key, then... */
else {
listData = malloc(sizeof(ListData));
listData->key = malloc(sizeof(char*)*strlen(aeD) 1);
strcpy(listData->key, aeD);
listData->key_sec = malloc(sizeof(char*)*strlen(aeO) 1);
strcpy(listData->key_sec, aeO);
listData->numTimes = 1;
listData->retrasos = (float*) malloc(sizeof(float)*7);
listData->retrasos[dia-1] = delay;
insertList(hash_list[numHash], listData);
}
}
free(aeO);
free(aeD);
}
listData * listData — это указатель, который указывает на структуру, определенную в моем файле linked-list.h, а _hash_list_ — это вектор указателей типа List, где каждый указывает на список типа List, определенный в том же файле:
/**
*
* The TYPE_LIST_KEY is used to define the type of the primary
* key used to index data in the list.
*
*/
#define TYPE_LIST_KEY char*
/**
*
* This structure holds the information to be stored at each list item. Change
* this structure according to your needs. In order to make this library work,
* you also need to adapt the functions compEQ and freeListData. For the
* current implementation the "key" member is used search within the list.
*
*/
typedef struct ListData_ {
// The variable used to index the list has to be called "key".
TYPE_LIST_KEY key;
char *key_sec;
// This is the additional information that will be stored
// within the structure. This additional information is associated
// to the key. You may include any field you may need useful.
float *retrasos;
int numTimes;
} ListData;
/**
*
* The item structure
*
*/
typedef struct ListItem_ {
ListData *data;
struct ListItem_ *next;
} ListItem;
/**
*
* The list structure
*
*/
typedef struct List_ {
int numItems;
ListItem *first;
} List;
Затем, вернувшись в мой файл main.c, я перебираю каждую ячейку в моем _hash_list_ , передавая список, на который указывает указатель на эту ячейку, функции, которая берет данные из списка и передает их другой функции, я имею в виду:
void insertInHash(){
int i;
for(i = 0; i < HASH_SIZE; i ){
if (hash_list[i] != NULL) {
dumpList2(hash_list[i]);
}
}
}
/* This function is called for every cell while looping the hash_list */
void dumpList2(List *l){
ListItem *current;
current = l->first;
while (current != NULL)
{
insertDataIntoOurTree(current->data->key_sec, current->data->key, current->data->retrasos);
current = current->next;
}
}
void insertDataIntoOurTree(char *aeO, char *aeD, float *delays){
List *list;
ListData *listData;
int i;
/* Case when the node exists! */
if (treeData != NULL) {
treeData->num ; // We add in one the counter of treeData
listData = findList(treeData->list, aeD); // We check if the new destination airport is inside the list of the node...
/* If the destination is inside the list... */
if(listData != NULL)
listData->numTimes ; // We add in one the counter of the list
/* If the destination isn't inside... */
else {
/* We create and initialize the new item the list of the node will contain! */
listData = malloc(sizeof(ListData));
listData->key = malloc(sizeof(char*)*strlen(aeD) 1); // Counting with the final '' byte!
strcpy(listData->key, aeD); // Remember the case as above with aeO and aeD
listData->numTimes = 1;
listData->retrasos = (float*) malloc(sizeof(float)*7);
//listData->retrasos[dia-1] = delay; // minus one cos we don't want to be out of bound! ;)
//copyDelays(listData->retrasos, delays);
for (i = 0; i < 7; i ) {
listData->retrasos[i] = 0.0;
}
copyDelays(listData->retrasos, delays);
insertList(treeData->list, listData);
}
}
/* THERE ARE MORE CASES DOWN HERE, BUT THEY DON'T MATTER NOW... */
}
Функция copyDelays определена в моем файле linked-list.c:
void copyDelays(float *delaysToCopy, float *delays){
int i;
for (i = 0; i < 7; i ) {
if (delaysToCopy[i] == 0.0) {
memcpy(delaysToCopy[i], delays[i], sizeof(float));
}
}
}
И, наконец, когда я пытаюсь скомпилировать все свои файлы, я получаю эту ошибку, которую я не понимаю:
linked-list.c:234:14: error: passing 'float' to parameter of incompatible type 'const void *'
memcpy(delaysToCopy[i], delays[i], sizeof(float*));
^~~~~~~~~~~~~~~
/usr/include/secure/_string.h:65:59: note: expanded from macro 'memcpy'
__builtin___memcpy_chk (dest, src, len, __darwin_obsz0 (dest))
^~~~
/usr/include/secure/_common.h:38:55: note: expanded from macro '__darwin_obsz0'
#define __darwin_obsz0(object) __builtin_object_size (object, 0)
^~~~~~
1 error generated.
make: *** [linked-list.o] Error 1
Комментарии:
1. Что не так с
delaysToCopy[i] = delays[i];
?delaysToCopy[i]
иdelays[i]
являются символами с плавающей точкой, а не указателями.2. Тогда, если я создам free () или удалю вектор ‘ delays ‘, моя ‘ delaysToCopy ‘ все еще будет содержать значения внутри? @tkausl
3. Да, почему бы и нет?
memcpy(dest, source, sizeof(float));
где обаdest
иsource
являются указателями с плавающей точкой, эквивалентно*dest = *source;
.4. вы правы @tkausl , я неправильно понял концепции и запутался, пытаясь сделать что-то вроде ответа ниже… В любом случае, спасибо! Теперь я гораздо яснее понимаю эти концепции!
Ответ №1:
Проблема в том, что аргументы, которые вы передали функции memcpy (), не совпадают с сигнатурой функции. сигнатура функции memcpy () следующая: (http://www.cplusplus.com/reference/cstring/memcpy /)
void * memcpy ( void * destination, const void * source, size_t num );
Как вы видите, он принимает указатели в качестве первого и второго аргументов, тогда как delaysToCopy[i]
и delays[i]
не являются указателями, просто плавают.
Это должно решить вашу проблему, если вы используете знак амперсанда для получения их адресов, как показано ниже:
memcpy(amp;delaysToCopy[i], amp;delays[i], sizeof(float));
Комментарии:
1. Большое вам спасибо @ J. Matt это объяснение помогло мне понять проблему, поскольку, похоже, я неправильно понял концепции с указателями в этом случае…