我正在处理双重链接列表并且出现了一个问题,我没有解决这个问题。为了更好地说明,在我说出问题之前,这是代码。
Dblist.h
# Ifndef CGI_DBLIST_H
# Define CGI_DBLIST_H
# Include "malloc.h"
/ * Structure represantative an element of the list. * /
typedef struct elem
{
int value;
struct elem * prev;
struct elem * next;
} Elem;
/ * Structure access to the list. * /
typedef struct
{
elem * first;
elem * last;
} dblist;
# ifdef __cplusplus
extern "C" {
# Endif
void Init (dblist * l); /* Initialize the list */
void pushback (dblist * s, int val); /* Add a value at end */
void PushFront (dblist * l, int val); /* Add a value at start */
int PopBack (dblist * l); /* Remove value at end */
int PopFront (dblist * l); /* Remove value at start */
void View (dblist l); /* Display whole list */
void ViewReverse (dblist l); /* Display all reversed */
void Clear (dblist * l); /* discard list */
dblist getInterval (dblist const * s);
#ifdef __cplusplus
}
#endif
#endif /* CGI_DBLIST_H */
Dblist.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "dblist.h"
#include "malloc.h"
void Init (dblist * l)
{
l-> first = NULL;
l-> last = NULL;
}
void pushback (dblist * s, int val)
{
elem * n = malloc (sizeof (elem));
if (! n) exit (EXIT_FAILURE);
n-> value = val;
n-> prev = l-> last;
n-> next = NULL;
if (s-> last) s-> last-> next = n;
else s-> first = n;
l-> last = n;
}
void PushFront(dblist *l, int val)
{
elem *n = malloc(sizeof(elem));
if(!n) exit(EXIT_FAILURE);
n->value = val;
n->next = l->first;
n->prev = NULL;
if(l->first) l->first->prev = n;
else l->last = n;
l->first = n;
}
int PopBack(dblist *l)
{
int val;
elem *tmp = l->last;
if(!tmp) return -1;
val = tmp->value;
l->last = tmp->prev;
if(l->last) l->last->next = NULL;
else l->first = NULL;
free(tmp);
return val;
}
int popFront(dblist* l)
{
int val;
elem *tmp = l->first;
if(!tmp) return -1;
val = tmp->value;
l->first = tmp->next;
//if(l->first)l->first->prev = NULL;
//else l->last = NULL;
//free(tmp);
return val;
}
dblist getInterval (dblist const * s)
{
dblist* intervals = NULL;
memmove(&intervals, &l, sizeof(l));
if(intervals->first)intervals->first->prev = NULL;
else intervals->last = NULL;
return *intervals;
}
void View (dblist l)
{
elem *pelem = l.first;
while (Pelem)
{
printf ("% d \ n", pelem-> value);
pelem = pelem-> next;
}
}
void ViewReverse (dblist l)
{
elem* test = l.last;
while (test)
{
printf("% d \ n", test-> value);
test = test-> prev;
}
}
void Clear (dblist * l)
{
elem *tmp;
elem *pelem = l->first;
while(pelem)
{
tmp = pelem;
pelem = pelem->next;
free(tmp);
}
l->first = NULL;
l->last = NULL;
}
的main.c
#include <stdlib.h>
#include <stdio.h>
#include "dblist.h"
int main ()
{
dblist pdbListe * = malloc (sizeof (dblist));
dblist interval;
Init (pdbListe);
printf ("Pushin In The gains list\n");
PushFront (pdbListe, 10);
Pushback (pdbListe, 20);
Pushback (pdbListe, 40);
PushFront (pdbListe, 23);
PushFront (pdbListe, 70);
PushFront (pdbListe, 54);
printf ("Viewing the list:\n");
View (pdbListe *);
puts ("--------------");
printf ("poping front capital gains from The Stack:\n");
printf ("% d\n", PopFront (pdbListe));
printf ("% d\n", PopFront (pdbListe));
/ / Printf ("% d\n", PopBack (pdbListe));
puts ("--------------");
printf ("Viewing the list after pop front:\n");
View (pdbListe *);
puts ("--------------");
printf ("this is pdbListe:% p\n", pdbListe);
printf ("this is interval:% p\n", & interval);
interval = getInterval (pdbListe);
printf ("Viewing the interval\n");
ViewReverse (interval);
printf ("first element is:% d\n", interval.first-> value);
printf ("last element is:% d\n", interval.last-> value);
puts ("--------------");
printf ("Reverse Viewing the list after pop front:\n");
ViewReverse (pdbListe *); // ISSUE HERE: it should print 6 elements not 4
puts ("--------------");
printf ("this is pdbListe:% p\n", pdbListe);
printf ("this is interval:% p\n", & interval);
printf ("sizeof pdbListe% d\n", sizeof (pdbListe));
printf ("sizeof interval% d\n", sizeof (interval));
printf ("Pushing back a value in The List:\n");
Pushback (pdbListe, 30);
printf ("Viewing the list after push back:\n");
View (pdbListe *);
puts ("--------------");
printf ("In The Front popping list:\n");
printf ("% d\n", PopFront (pdbListe));
printf ("% d\n", PopFront (pdbListe));
puts ("--------------");
printf ("Viewing the list after pop front:\n");
View (pdbListe *);
puts ("--------------");
printf ("Clearing the list\n");
Clear (pdbListe);
printf ("Freeing the list\n");
free (pdbListe);
system ("PAUSE");
return 0;
}
不关心malloc.h,它是用来确保正确记忆usgae的小实用程序
所以问题是区间变量来自getInterval(const dblist *)
,我希望它在应用popBack
或popFront
时只保留初始列表的一部分。
问题在于,如果我对getInterval
进行修改,则会影响pdbListe
的值。例如,尝试像这样修改getInterval
(尝试对这些行进行注释,如下图所示):
dblist getInterval(const dblist* l) {
dblist* intervals = NULL;
memmove(&intervals, &l, sizeof(l));
//if(intervals->first)intervals->first->prev = NULL;
//else intervals->last = NULL;
return *intervals;
}
从那里可以看出,不仅getInterval
返回的结果(在本例中是main.c中的区间变量),而且pdbListe
变量本质上永远不应该被修改!< / p>
我可以做些什么来解决这个问题?我希望pdbListe
保持原样,永远不会受到getInterval
正在做的事情的影响。
答案 0 :(得分:0)
如果您希望getRange返回子列表,而原始列表保持不变,那么您需要修改您的列表终止(放置端点)的方式。您将需要停止使用NULL作为结束标记,并使用与第一个/最后一个元素指针的比较。例如:
void printList(dblist *list) {
for (elem *e = list->first; e != list->last; e = e->next) {
printf("%d ", e->value);
}
}
请注意e != list->last
,而不是e != NULL
。
这样,您可以通过构建具有新的起点/终点的dblist来创建子列表。它不再需要对底层链接进行任何修改(next和prev)。