- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
#include<stdio.h>
#include<stdlib.h>
typedef struct node
{
int data;
struct node *link;
}list;
list *header =NULL;
void insert(int num)
{
printf("num:%d ", num);
struct node *temp, *r;
temp = header;
r = malloc(sizeof(struct node));
r -> data = num;
if(temp == NULL ||temp-> data > num )
{
r-> link = temp ;
header = r;
}
else
{
while(temp !=NULL)
{
if(temp -> data <= num && (temp->link->data > num));
{
r -> link = temp -> link;
temp->link=r;
return;
}
temp = temp -> link;
}
}
}
void display()
{
struct node *temp;
temp = header;
while(temp != NULL)
{
printf("%d ", temp->data);
temp = temp->link;
}
}
void main( )
{
insert(10);
insert(5);
insert(17);
insert(8);
insert(23);
insert(78);
display();
}
这里我尝试按升序插入元素。令我惊讶的是,我得到的输出是 5 78 23 8 17 10,这是不正确的,有人可以看一下吗?任何帮助将不胜感激..
最佳答案
为了在链表中按升序插入节点,您必须解决以下情况 -
1.列表为空:当列表中没有元素时
2. 在开始处插入:当r->data < header->data
时,需要将其插入到列表的最开头。
3. 在末尾插入:当r->data
时大于列表中最大值的节点,需要将其插入到最后(假设我们在这里进行排序插入),如用户 @keltar
已经指出了。
4.在中间插入:当r->data > header->data
时但小于列表中最大的元素,需要将其插入到 header 和最后一个节点之间的某个位置。
排序插入的简单实现如下 -
#include <stdio.h>
#include <stdlib.h>
#define LEN 13
struct node {
int data;
struct node *next;
};
/*
* print_list() - To print the state of the list
*/
void print_list(struct node *head)
{
struct node *tmp = head;
while (tmp) {
printf(" %d ", tmp->data);
tmp = tmp->next;
}
printf("\n\n");
}
/*
* insert_node_sorted() - To insert nodes into the list
* in sorted order
*/
struct node *insert_node_sorted(struct node *head, int data)
{
struct node *tmp;
struct node *e_ptr;
struct node *new_node = malloc(sizeof(struct node));
if (!new_node)
exit(0);
new_node->data = data;
new_node->next = NULL;
/* When the list is empty */
if (!head)
return new_node;
else {
/* Initialize tmp & e_ptr */
tmp = head;
e_ptr = head;
/* Make e_ptr point to the largest element of the list, i.e. last element */
while (e_ptr->next)
e_ptr = e_ptr->next;
/* If the element to be inserted is smaller than the head node */
if (head->data > new_node->data) {
new_node->next = head;
head = new_node;
} else if (new_node->data > e_ptr->data){ /* Data to be inserted is larger than the largest element in the list */
e_ptr->next = new_node;
} else { /* New node should be placed somewhere in between head and e_ptr */
while (tmp->next && tmp->next->data < new_node->data)
tmp = tmp->next;
new_node->next = tmp->next;
tmp->next = new_node;
}
}
return head;
}
/*
* Driver function
*/
int main(int argc, char **argv)
{
struct node *head = NULL;
int i;
/* Populate the list */
for (i = 0; i < LEN; i++)
head = insert_node_sorted(head, rand() % 1000);
/* Print the state of the list */
printf("State of the list -\n\n");
print_list(head);
return 0;
}
关于c - 将元素按升序插入单链表中。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23582456/
我创建了一个单链表。一切正常。 我只想知道我是否在我的代码中做了任何有潜在危险的事情。我关心的代码片段是我的推送、弹出和清理。部分代码仅用于用户交互,因此并不重要(无论如何我都发布了它,以便更清楚地了
链表:是一个有序的列表,但是它在内存中是分散存储的,使用链表可以解决类似约瑟夫问题,排序问题,搜索问题,广义表 单向链表,双向链表,环形链表 PHP的底层是C,当一个程序运行时,内存分成五个区(
我最近开始专注于使用数据结构及其用例的编码练习。下面是我的程序,将数据插入到单个链表中,其中每个节点存储下一个节点的对象。这个程序运行良好。我想了解下面的代码有多有效,所遵循的逻辑是否有效且高效。当节
尝试编写一种方法,从单链表中删除某个值的所有实例,但它似乎不起作用。 我试图适应头部是否包含该值,但我不确定这是否是正确的方法: public void remove (int value) {
struct nodeStruct { int value; struct nodeStruct *next; } struct nodeStruct* List_createNode
typedef struct node { int data; struct node *next; } NODE; NODE* add_head(NODE **phead, int data) {
void addToEnd() { newnode = (struct node*)malloc(sizeof(struct node)); printf ("Enter the cu
我想编写一种方法,从单向链表中删除具有重复数据值的连续项。该方法应返回移除的项目数。该方法应根据需要清理内存,并应假定内存是使用 new 分配的。 比如传入列表 ->a->b->c->c->a->b-
我有一个存储播放列表的表。它的定义非常简单,只有三列: setID - 引用播放列表中的一行的 16 位十六进制 songID - 16 位十六进制数,引用我的歌曲表中的一行 nextID - 16
为什么我的代码不删除链表的最后一个元素?我创建了一个当前指针来横向穿过我的列表并跳出循环..(下一个是我的结构中名为 Card_Node 的点)。回答起来应该很简单,只是不确定为什么它不会删除列表中的
大家好,我现在正在为期中考试学习,正在努力尝试使用单链表创建一个简单的程序。我想让它做的就是将“1”、“2”、“3”、“4”插入列表并打印出来。请看下面的代码: #include #include
我想创建单链表(使用类),其中每个列表中都有:指向文本的指针、整数、指向下一个列表的指针。 我需要实现 3 个功能:插入(将列表插入单链表并根据指针指向的文本使用strcmp对元素进行排序)remov
我已经实现了一个单链表,我注意到了非常奇怪的行为,但无法查明它发生的确切原因。我已经尝试使用 gdb 找出问题所在,看起来每当我计算列表的大小时,事情就开始出错了。这是我用来测试我的实现的程序,下面是
我正在尝试找出一种从链表中间删除的算法.. 我的想法是遍历链表,找到我要删除的节点之前的节点,命名为Nprev,将Nprev设置为Nnext,其中Nnext在要删除的节点之后Ndelete。 所以 N
我正在尝试创建一个简单的单向链表。以前,我成功地做到了这一点,没有任何错误,但是现在我遇到了错误。我怀疑由于第 23 行中的 if 语句,内存分配存在某种问题。 我尝试过的: 我在我的所有声明中都使用
我正在尝试创建一个简单的单向链表。以前,我成功地做到了这一点,没有任何错误,但是现在我遇到了错误。我怀疑由于第 23 行中的 if 语句,内存分配存在某种问题。 我尝试过的: 我在我的所有声明中都使用
我在学习C++语言的同时尝试构建一个链表,并实现一个从最低到最高的节点插入功能。我遵循了互联网和教科书中的一些教程。 我有一个用于链表节点设置的结构: struct Node { private:
本文实例讲述了Python数据结构与算法之链表定义与用法。分享给大家供大家参考,具体如下: 本文将为大家讲解: (1)从链表节点的定义开始,以类的方式,面向对象的思想进行链表的设计 (2)链表
1561/1563 test cases passed 问题描述: You are given two non-empty linked lists representing two non-nega
我有一个任务来实现一个单链表。我试图找出如何获取头部,但最终出现堆栈溢出错误或空指针错误。有人可以帮助我吗?我已经显示了相关的代码片段: public class Llist { privat
我是一名优秀的程序员,十分优秀!