你可以在不太繁重的条件下做到这一点,但它是一种欺骗。
如果该add_element()
函数将新元素添加到列表的末尾,而不是头部,并且如果您安排事情以使列表中有一个初始节点,那么您几乎可以这样做。
证明:
#include <assert.h>
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static void err_exit(const char *fmt, ...);
typedef struct node node;
typedef struct object object;
struct object
{
int id;
char *name;
node *list_head; //a pointer to the head of a linked list
};
struct node
{
node *next;
object *data;
};
static void add_element(node **list, int value)
{
assert(list != 0);
object *new_objt = calloc(sizeof(object), 1);
node *new_node = calloc(sizeof(node), 1);
if (new_objt == 0 || new_node == 0)
err_exit("Out of memory in %s\n", __func__);
node *next = *list;
while (next->next != 0)
next = next->next;
next->next = new_node;
new_node->data = new_objt;
new_objt->id = value;
}
static void print_list(const node *list)
{
assert(list != 0);
node *next = list->next;
printf("List: ");
while (next != 0)
{
if (next->data != 0)
printf("%d ", next->data->id);
next = next->next;
}
printf("EOL\n");
}
static void function_a(object obj)
{
int num = 1;
add_element(&obj.list_head, num);
}
int main(void)
{
node temp_node = { 0, 0 };
object temp_obj = { 0, 0, &temp_node }; // Key trick!
print_list(&temp_node);
function_a(temp_obj);
print_list(&temp_node);
function_a(temp_obj);
print_list(&temp_node);
return 0;
}
static void err_exit(const char *fmt, ...)
{
int errnum = errno;
va_list args;
va_start(args, fmt);
vfprintf(stderr, fmt, args);
va_end(args);
if (errno != 0)
fprintf(stderr, " (%d: %s)", errnum, strerror(errnum));
putc('\n', stderr);
exit(EXIT_FAILURE);
}
汇编
gcc -O3 -g -std=c99 -Wall -Wextra node.c -o node
输出:
List: EOL
List: 1 EOL
List: 1 1 EOL
如果练习的目的是打败一个脑死界面,这可以解决它。如果练习的目的是创建一个可用的界面,那么您可能不会这样做;您将指向结构的指针传递给,function_a()
以便您可以更改list_head
.