我有以下函数从 C 中的链表中删除通用数据:
void removeData(void *data, struct accList *theList)
{
struct accListNode* cur = theList->head;
struct accListNode* prev = NULL;
for(; cur != NULL; prev = cur, cur = cur->next)
{
if(cur->data == data)
{
if(cur == theList->head)
{
theList->head = cur->next;
}
if(cur == theList->tail)
{
theList->tail = prev;
}
if(prev != NULL)
{
prev->next = cur->next;
}
free(cur);
return;
}
}
}
背后的含义是cur->data == data
什么?
由于我的数据是通用的 ( void*
),这对任何原始类型和任何结构类型意味着什么?
例如,考虑员工结构:
struct employee
{
char name[20];
float wageRate;
};
cur->data == data
如果 data 是 type ,该语句将如何工作struct employee*
?由于数据是指向结构的第一个内存地址的指针,我只是比较指针地址吗?