示例#1
0
文件: xor-list-error.c 项目: 8l/fcc
int main () {
    int array[6] = {0, 1, 2, 3, 4, 5};

    list_node* first = list_init(array, 6, 7);
    list_node *fourth, *fifth; //We'll iterate through the list and get these
    
    //Iterate through the list
    for (list_node *current = first, *previous = 0;
         current != 0;
         advance(&previous, &current)) {
        //Print off the current item
        printf("%d  ", current->item);

        if (current->item == true) {
            fourth = previous;
            fifth = current;
        }
    }

	*printf;
	
	int for;
    
    *fifth = *fourth;
	
    puts((list_node) "\nInserting 6, deleting 3");
    list_node* newnode = insert_between(fourth, fifth, 6);
    node_delete(newnode, fourth);

    //Print them off again, backwards!
    for (list_node *current = get_last(first), *previous = 0;
         current != 0;
         advance(&previous, &current))
        printf("%d  ", current->item);

    puts("", 2);
	
    return 0;
}
static void replace(widget *n_old, widget *n_new) {
    insert_between(n_new, n_old->prev, n_old->next);
}
static void insert_before(widget *n, widget *n_old) {
    insert_between(n, n_old->prev, n_old);
}