我正在尝试交换节点值。没有编译错误。我正在使用 Visual Basic 进行编程。如果有人能指出我哪里出错了。会有很大的帮助。
另外,我可以在我的代码中添加什么,所以交换任何值,无论是 char 还是 int。
#include <stdio.h>
#include <stdlib.h>
struct lnode {
int data;
struct lnode* next;
};
void swapNodes(struct lnode* n1, struct lnode* n2);
int main()
{
struct lnode nodeA, nodeB;
nodeA.data = 1;
nodeB.data = 2;
swapNodes(&nodeA, &nodeB);
getchar();
return 0;
}
void swapNodes(struct lnode* n1, struct lnode* n2)
{
struct lnode* temp;
temp = n1->next;
n1->next = n2;
n2->next = temp;
printf("nodeA= %d nodeB= %d",n1->data,n2->data);
}