struct list *root = NULL;
struct list **tmp = &root;
	for(int i = 1; i < 10; i++){
		*tmp = insert(*tmp, i*16 % 9);
        tmp = &(*tmp)->next;
	}