- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
为什么我在 insertNode()
中收到此警告:
warning: assignment from incompatible pointer type [enabled by default]|
在这一行中:
head->next = newNode; //point head's next to the newNode
和
warning: initialization from incompatible pointer type [enabled by default]|
在这一行中:
Node *current = head->next;
在我的 main()
函数中我也有这个警告:
warning: passing argument 1 of 'insertNode' from incompatible pointer type [enabled by default]|
在这一行中:
insertNode(&head, num);
我的代码中还有许多与这些警告类似的警告。我该如何修复它们?
typedef struct NodeStruct{
int data;
struct Node *next;
}Node;
void insertNode(Node *head, int data){
Node *newNode = (Node *)malloc(sizeof(Node));
newNode->data = data;
if(head->next == NULL){
head->next = newNode;
newNode->next = NULL;
}
else{
Node *current = head->next;
while(current != NULL && current->data < data){
current = current->next;
}
newNode->next = current->next;
current->next = newNode;
}
}
int main(int argc, char *argv[])
{
Node *head = malloc(sizeof(NodeStruct));
head->next = null;
insert(head, 22);
insert(head, 55);
insert(head, 44);
insert(head, 2);
insert(head, 2112);
insert(head, 3);
printList(head);
return 0;
}
最佳答案
在 main
中 -
insertNode(&head, num);
^ don't pass address
它需要 Node *
,你应该这样调用它 -
insertNode(head, num);
其他警告是由于上述错误,因为您传递 head
的地址而不是将 head
传递给 function 。
同样在 struct NodeStruct
中改变这个 -
struct Node *next; // you cannot reference Node in struct itself
至-
struct NodeStruct *next; //You need to use structure name
关于c - 从不兼容的指针类型赋值[默认启用],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33406355/
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 6 年前。 Improve t
notificationCenterPublisher = NotificationCenter.default .publisher(for: .NSManagedObjec
我有以下 Rust 代码: #[inline(never)] fn x() -> i32 { 21 } pub fn main() -> i32 { x() } 如果没有优化 (-C
notificationCenterPublisher = NotificationCenter.default .publisher(for: .NSManagedObjec
我有以下 Rust 代码: #[inline(never)] fn x() -> i32 { 21 } pub fn main() -> i32 { x() } 如果没有优化 (-C
假设我的 ASPX 页面没有内联 C# 代码块。 所以,我可以安全地设置 ...在我的 web.config 文件中,不用担心编译错误。 就性能而言,使用以下设置是否会有任何损失? 即“自动”检测
应用程序.js var win1 = Titanium.UI.createWindow({ title:'Tab 1', backgroundColor: 'black', l
基本上,我正在为实现多级优先级队列的 xv6 内核实现一个调度程序。我有一个严重的问题,我不明白,我类(class)的助教不明白,我已经错过了这个项目的最后期限,所以现在帮助我不会给我任何加分 - 但
我想避免 git 自动 merge 我的 composer.json。这样我就可以在 develop 分支中有一个使用 dev-develop 包的 composer.json,而 master 中的
当比较两种不同的算法实现时(因此,不关心它们的绝对性能,而只关心相对性能)我是否最好强制 Java 只运行解释代码? 也就是说,打开 -Xint 标志会更好吗? 最佳答案 我不认为禁用 JIT 会更好
class A{ const size_t number; public: A(size_t number): number(number) {} void f(){
问题 寻找在以下之间切换的方法: 总是 从不 仅在静默模式下 仅当不处于静默模式时 这些选项在手机上的路径---菜单>>设置>>声音>>振动---找到。 通过手机导航很容易更改(顺便说一句,我的手机是
如何设置电源设置关闭:从不(关闭显示器=从不,让计算机进入休眠状态=从不),通过c#代码 最佳答案 这个问题中给出的链接可以告诉你一个方法。 Programmatically change Windo
我是一名优秀的程序员,十分优秀!