Quick actions

cmd+k|ctrl+k

Navigation

Languages

SLL array indexed

Snippet info

Language

C

Visibility

public

Author

ilicivan

Created

2018-04-28T17:29:52Z

Updated

2018-04-28T17:33:36Z

#include <stdio.h>

int main(void) {
    printf("SLLi\n");
    return 0;
}

struct Node {
    void *data;
    int next;    // struct Node *next;
    int prev;    // struct Node *prev;
 };
 
struct List {
    int head;    // struct Node *head;
    int tail;    // struct Node *tail;
    size_t size; // num of nodes in array
    int storage [10];
};
INFO