我正在尝试实现一个接收 List 和 Int 作为参数的 bool 函数,如果 int 在列表中不存在,则应该插入 int 并返回 true,如果 int 已经存在则返回 false,我已经使用这个函数工作了几个小时,并且 if-else 语句可以插入排序的 int,问题(和崩溃)是如何检查值是否已经存在并返回 false,这是我的函数:struct 的声明
typedef struct E_Type * List;
struct E_Type
{
int data;
List next = 0;
};
和功能
bool insert(List & l, int data)
{
List current = l;
do{//check if the int is already in the list
current->data;
current = current->next;
//return false;
}while (current->data == data);
if (l == 0 || l->data > data){
List new_list = new E_Type;
new_list->data = data;
new_list->next = l;
l = new_list;
return true;
}
else if(l->data < data){
insert(l->next, data);
return true;
}
}