- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是关于单链表的。我有以下代码。我现在想扩展这些代码,以便可以在某个特定位置添加/删除元素。我不知道如何去实现它。
这是我迄今为止所拥有的:
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
struct list
{
int amount;
struct element *first;
};
struct element
{
int number;
struct element *next;
int *temp;
};
int main()
{
struct list lk;
struct element *ptr, *temp;
int amount;
int i;
printf("How much elements u want enter?");
scanf("%d", &amount);
ptr = (struct element *) calloc(1, sizeof(struct element));
lk.first = ptr;
lk.amount = 0;
printf("Please enter 1. number :");
scanf("%d", &(ptr->number));
temp = ptr;
for (i = 2; i <= amount; i++)
{
printf("Please enter %d. number", i);
ptr = (struct element *) calloc(1, sizeof(struct element));
lk.amount++;
scanf("%d", &(ptr->number));
ptr->next = NULL;
temp->next = ptr;
temp = ptr;
}
ptr = lk.first;
while (ptr != NULL)
{
printf("%d \n", ptr->number);
ptr = ptr->next;
}
getch();
return 0;
}
我找到了以下方法,但我不知道如何针对我的程序调整它:
void insertInList (list* L, element* position, element* new)
{
if (position == 0)
{
new->next = L->first;
L->first= new;
L->amount++;
}
else
{
new->next = position->next;
position->next = new;
L->amount++;
}
}
我在用户输入后对此进行了测试:
struct list lk;
struct element *ptr, *temp, number1, number2;
int amount;
int i;
printf("Which element u want add:");
scanf("%d", number1.number);
printf("On which position u want add the element?:");
scanf("%d", number2.number);
initList(&lk);
insertInList(&lk, &zahl2, &zahl1);
在 > scanf("%d", number1.number); 行之后,我收到 AccessViolentException;
最佳答案
让我们从单链接非循环列表的 2 个特殊情况开始。第一种是添加数据的通用方法,就是继续将节点添加到列表的末尾。那里的函数可能看起来像:
/* insert node at end of list */
void insert_end (list *l, int n)
{
struct lnode *ptr = NULL;
if (!(ptr = calloc (1, sizeof *ptr))) {
fprintf (stderr, "%s() error: memory exhausted.\n", __func__);
exit (EXIT_FAILURE);
}
ptr->number = n;
ptr->next = NULL;
if (l->cnt == 0)
{
l->first = ptr;
l->cnt++;
return;
}
lnode *iter = l->first; /* pointer to iterate list */
while (iter->next) iter = iter->next;
iter->next = ptr;
l->cnt++;
}
上面您只需为下一个元素分配存储(我将它们保留为节点)。您只需检查金额(重命名为 cnt
)是否为 0
。如果是,则添加为第一个节点。如果没有,则创建一个指向列表的指针以用作迭代器并迭代列表指针,直到 node->next
是 NULL
并在末尾添加新节点。
(注意:如果插入效率很重要,双链循环链表不需要迭代,只需在 list->prev
位置添加一个节点即可,即即使在具有数亿个节点的列表中也可以盲目地快速添加)
下一个变体是想要在列表的开头或开头添加一个新节点。在这里你只需做 ptr->next = l->first
然后l->first = ptr
:
/* insert node at beginning of list */
void insert_start (list *l, int n)
{
struct lnode *ptr = NULL;
if (!(ptr = calloc (1, sizeof *ptr))) {
fprintf (stderr, "%s() error: memory exhausted.\n", __func__);
exit (EXIT_FAILURE);
}
ptr->number = n;
if (l->cnt == 0)
ptr->next = NULL;
else
ptr->next = l->first;
l->first = ptr;
l->cnt++;
}
在列表中的给定位置插入一个节点怎么样?您需要验证位置 (0 <= pos <= lk->cnt)
(或者您可以将任何大于 lk->cnt
的值设置为等于 lk->cnt
)。您已经了解了如何使用列表指针迭代 iter = lter->next
来迭代节点以到达列表末尾。直到到达最后一个节点。前往nth
节点没有什么不同。要在给定位置插入,您将获得该位置,因此只需迭代 pos
即可。到达插入点的次数:
/* insert node at position */
void insert_pos (list *l, int n, int pos)
{
/* validate position */
if (pos < 0 || pos > l->cnt) {
fprintf (stderr, "%s() error: invalid position.\n", __func__);
return;
}
/* if empty or pos 0, insert_start */
if (l->cnt == 0 || pos == 0) {
insert_start (l, n);
return;
}
struct lnode *ptr = NULL;
if (!(ptr = calloc (1, sizeof *ptr))) {
fprintf (stderr, "%s() error: memory exhausted.\n", __func__);
exit (EXIT_FAILURE);
}
ptr->number = n;
ptr->next = NULL;
lnode *iter = l->first; /* pointer to iterate list */
while (--pos)
iter = iter->next;
if (iter->next)
ptr->next = iter->next;
iter->next = ptr;
l->cnt++;
}
下一个变体是按数字排序顺序在列表中的任意位置添加节点。若新ptr->number = 6;
你已经有了5
和7
,然后插入新的 ptr
持有 5
的人之间和7
。 注意:下面的这个函数还处理放置第一个节点、小于列表中第一个节点的节点,以及将节点放置在列表末尾。它基本上就是找到给定的新节点将去往的位置。如果您的目标是按排序顺序插入节点,则可以使用它作为唯一的输入例程,或者您可以使用它来填充特殊情况。
/* insert node at end of list */
void insert_ordered (list *l, int n)
{
/* if first node of n < first->number */
if (l->cnt == 0 || n < l->first->number) {
insert_start (l, n);
return;
}
struct lnode *ptr = NULL;
if (!(ptr = calloc (1, sizeof *ptr))) {
fprintf (stderr, "%s() error: memory exhausted.\n", __func__);
exit (EXIT_FAILURE);
}
ptr->number = n;
ptr->next = NULL;
lnode *iter = l->first; /* pointer to iterate list */
while (iter->next && n > iter->next->number) {
iter = iter->next;
}
if (iter->next)
ptr->next = iter->next;
iter->next = ptr;
l->cnt++;
}
只要我们扩展您的列表,您就应该保留 main
功能干净,功能为 print
为您和 free
提供的列表完成后分配给列表的所有内存。可以完成此任务的几个辅助函数可能是:
void prn_list (list l)
{
lnode *ptr = l.first;
int i = 0;
while (ptr)
{
printf(" node[%2d] : %d\n", i++, ptr->number);
ptr = ptr->next;
}
}
void free_list (list l)
{
lnode *ptr = l.first;
while (ptr)
{
lnode *del = ptr;
ptr = ptr->next;
free (del);
del = NULL;
}
}
以类似的方式删除作品。将它们放在一起,您将得到一个具有输入特征的半鲁棒列表。请注意struct
也有过typedefs
创建减少打字并提高可读性。
#include <stdio.h>
#include <stdlib.h>
// #include <conio.h>
typedef struct lnode
{
int number;
struct lnode *next;
} lnode;
typedef struct
{
int cnt;
lnode *first;
} list;
void insert_end (list *l, int n);
void insert_start (list *l, int n);
void insert_ordered (list *l, int n);
void insert_pos (list *l, int n, int pos);
void prn_list (list l);
void free_list (list l);
int main (void)
{
list lk = { 0, NULL };
int num = 0;
int i = 0;
printf ("\n number of nodes to enter: ");
scanf ("%d", &num);
for (i = 0; i < num; i++)
{
int n = 0;
printf (" enter node[%d]->number: ", i);
scanf("%d", &n);
insert_end (&lk, n);
}
printf ("\n The list contains '%d' nodes.\n", lk.cnt);
printf ("\n The list nodes are:\n\n");
prn_list (lk);
printf ("\n enter number to add at start: ");
scanf("%d", &num);
insert_start (&lk, num);
printf ("\n The list contains '%d' nodes.\n", lk.cnt);
printf ("\n The list nodes are:\n\n");
prn_list (lk);
printf ("\n enter number to add in order: ");
scanf("%d", &num);
insert_ordered (&lk, num);
printf ("\n The list contains '%d' nodes.\n", lk.cnt);
printf ("\n The list nodes are:\n\n");
prn_list (lk);
printf ("\n enter number to add at position: ");
scanf("%d", &num);
printf ("\n position must be (0 <= pos <= %d)\n", lk.cnt);
printf ("\n enter position in list for '%d': ", num);
scanf("%d", &i);
insert_pos (&lk, num, i);
printf ("\n The list contains '%d' nodes.\n", lk.cnt);
printf ("\n The list nodes are:\n\n");
prn_list (lk);
printf ("\n Freeing list memory:\n\n");
free_list (lk);
//getch();
return 0;
}
/* insert node at end of list */
void insert_end (list *l, int n)
{
struct lnode *ptr = NULL;
if (!(ptr = calloc (1, sizeof *ptr))) {
fprintf (stderr, "%s() error: memory exhausted.\n", __func__);
exit (EXIT_FAILURE);
}
ptr->number = n;
ptr->next = NULL;
if (l->cnt == 0)
{
l->first = ptr;
l->cnt++;
return;
}
lnode *iter = l->first; /* pointer to iterate list */
while (iter->next) iter = iter->next;
iter->next = ptr;
l->cnt++;
}
/* insert node at beginning of list */
void insert_start (list *l, int n)
{
struct lnode *ptr = NULL;
if (!(ptr = calloc (1, sizeof *ptr))) {
fprintf (stderr, "%s() error: memory exhausted.\n", __func__);
exit (EXIT_FAILURE);
}
ptr->number = n;
if (l->cnt == 0)
ptr->next = NULL;
else
ptr->next = l->first;
l->first = ptr;
l->cnt++;
}
/* insert node at end of list */
void insert_ordered (list *l, int n)
{
/* if first node of n < first->number */
if (l->cnt == 0 || n < l->first->number) {
insert_start (l, n);
return;
}
struct lnode *ptr = NULL;
if (!(ptr = calloc (1, sizeof *ptr))) {
fprintf (stderr, "%s() error: memory exhausted.\n", __func__);
exit (EXIT_FAILURE);
}
ptr->number = n;
ptr->next = NULL;
lnode *iter = l->first; /* pointer to iterate list */
while (iter->next && n > iter->next->number)
iter = iter->next;
if (iter->next)
ptr->next = iter->next;
iter->next = ptr;
l->cnt++;
}
/* insert node at position */
void insert_pos (list *l, int n, int pos)
{
/* validate position */
if (pos < 0 || pos > l->cnt) {
fprintf (stderr, "%s() error: invalid position.\n", __func__);
return;
}
/* if pos 0, insert_start */
if (l->cnt == 0 || pos == 0) {
insert_start (l, n);
return;
}
struct lnode *ptr = NULL;
if (!(ptr = calloc (1, sizeof *ptr))) {
fprintf (stderr, "%s() error: memory exhausted.\n", __func__);
exit (EXIT_FAILURE);
}
ptr->number = n;
ptr->next = NULL;
lnode *iter = l->first; /* pointer to iterate list */
while (--pos)
iter = iter->next;
if (iter->next)
ptr->next = iter->next;
iter->next = ptr;
l->cnt++;
}
/* print all nodes in list */
void prn_list (list l)
{
lnode *ptr = l.first;
int i = 0;
while (ptr)
{
printf(" node[%2d] : %d\n", i++, ptr->number);
ptr = ptr->next;
}
}
/* free memory for all nodes */
void free_list (list l)
{
lnode *ptr = l.first;
while (ptr)
{
lnode *del = ptr;
ptr = ptr->next;
free (del);
del = NULL;
}
}
使用/输出
$ ./bin/ll_single_ins
number of nodes to enter: 3
enter node[0]->number: 5
enter node[1]->number: 7
enter node[2]->number: 9
The list contains '3' nodes.
The list nodes are:
node[ 0] : 5
node[ 1] : 7
node[ 2] : 9
enter number to add at start: 2
The list contains '4' nodes.
The list nodes are:
node[ 0] : 2
node[ 1] : 5
node[ 2] : 7
node[ 3] : 9
enter number to add in order: 6
The list contains '5' nodes.
The list nodes are:
node[ 0] : 2
node[ 1] : 5
node[ 2] : 6
node[ 3] : 7
node[ 4] : 9
enter number to add at position: 4
position must be (0 <= pos <= 5)
enter position in list for '4': 4
The list contains '6' nodes.
The list nodes are:
node[ 0] : 2
node[ 1] : 5
node[ 2] : 6
node[ 3] : 7
node[ 4] : 4
node[ 5] : 9
Freeing list memory:
valgrind 内存错误检查
$ valgrind ./bin/ll_single_ins
==22898== Memcheck, a memory error detector
==22898== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al.
==22898== Using Valgrind-3.8.1 and LibVEX; rerun with -h for copyright info
==22898== Command: ./bin/ll_single_ins
==22898==
number of nodes to enter: 3
enter node[0]->number: 5
enter node[1]->number: 7
enter node[2]->number: 9
The list contains '3' nodes.
<snip>
==22519== HEAP SUMMARY:
==22519== in use at exit: 0 bytes in 0 blocks
==22519== total heap usage: 5 allocs, 5 frees, 80 bytes allocated
==22519==
==22519== All heap blocks were freed -- no leaks are possible
==22519==
==22519== For counts of detected and suppressed errors, rerun with: -v
==22519== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 2 from 2)
关于c - 单链表 - 删除/添加位置 x 处的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30554797/
今天我们将开始第二个数据类型-链表的学习,同样我们还是用最原始的方式,自己申请内存管理内存来实现一个链表。 01、01、定义 什么是链表?链表在物理存储结构上表现为非顺序性和非连续性,因此链表
前言:笔记是参考B站up主尚硅谷,图片、代码都是哦。在blog写笔记~(图片、代码来源尚硅谷,侵权必删!) 尚硅谷数据结构学习路线B站网站:https://www.bilibili.com/video
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我想创建一个没有全局变量的单个链表。我用 NULL 初始化了第一个元素,然后想将第一个元素 node 复制到 list_。它被复制到函数中,但副作用不起作用。在我的主函数中,该值仍然是NULL。如果我
我正在尝试使链表与此处的链表相似: linked list in C 那就是在另一个结构中有“头”,我首先称它为“头”。但是我发现做那个改变。很难向 list_item 结构添加值。我已经尝试了一些东
我正在尝试理解链表的代码。我明白他们是如何工作的。我正在查看一些与动态内存和链表有关的代码,我在此处对其进行了简化: #include #include typedef struct nod
有人可以解释下面的代码吗?我是 C 的新手,正在努力弄清楚。为什么我们最后有 queueNodeT? typedef char queueElementT; typedef struct queueN
场景如下:- 我想反转单链表的方向,换句话说,反转后所有指针现在应该指向后.. 这个算法应该需要线性时间。 我想到的解决方案是使用另一个数据结构 A Stack.. 借助它可以轻松反转单向链表,所有指
在 python 中使用链表最简单的方法是什么?在 scheme 中,链表由 '(1 2 3 4 5) 定义。 Python 的列表 [1, 2, 3, 4, 5] 和元组 (1, 2, 3, 4,
本文首发公众号:小码A梦 一般数据主要存储的形式主要有两种,一种是数组,一种是链表。数组是用来存储固定大小的同类型元素,存储在内存中是 一片连续 的空间。而链表就不同于数组。链表
虽然之前有人问过关于链表与数组的问题,但答案大多归结为我们大多数人在某个时候可能已经学到的东西: 列表擅长插入和删除 数组擅长随机访问 现在像 Bjarne Stroustrup 这样受人尊敬的人有
位置 在堆中,碎片化(每个节点的 malloc) - 在几种不同的方式(缓慢分配,缓慢访问,内存碎片)方面效率低下 在堆中,在一个大块中 - 当需要重新分配 时,数据结构获得的所有灵活性都将丢失 在堆
我完成了泛型的学习,但并不容易。不过,我确实明白了。这是我的理解。我希望您纠正我的错误并回答几个问题:)。 public class LinkedList { //class definition }
我将如何创建一个链接列表来在 OCaml 中保存我的数据?我正在尝试制作一个单链表,但是我遇到了语法问题。我只想制作一个模块来简单地从链表中获取'a,插入'a或删除'a。 有人知道吗? 最佳答案 正如
我在使用这段代码时遇到了问题,我不确定我做错了什么 #include #include #include #include typedef struct flight_struct{
我正在创建一个函数来删除给定列表的最后一个节点(作为参数输入)。该函数本身非常简单,如下所示。 function popBack(list) { var current = list.head
我正在尝试开发一种方法,该方法将在链接列表中的当前节点之前插入传递给它的节点。它有3个条件。对于此实现,不能有任何头节点(仅对列表中第一个节点的引用),并且我无法添加更多变量。 如果列表为空,则将传递
使用 scala,我已将大约 100000 个节点添加到链表中。当我使用函数 length 时,例如 mylist.length。我收到“java.lang.StackOverflowError”错误
所以我正在学习处理链表。我将如何递归地添加节点内的项目。我可以通过执行 sum = h.item +h.next.item+h.next.next.item 添加它们,但这只有在我有小的链接列表时才有
所以我一直在努力理解链表的概念(一直在看一些示例代码,我在互联网上找到了这个。现在如果我能请别人确认我是否正确掌握了一些概念。我将绘制图表,说明我认为每个代码链接的作用。 #include #inc
我是一名优秀的程序员,十分优秀!