python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Bus error 10 for initialisation of my skip list
how can I find the bus error 10 for the initiation process of my skip list???
struct leapList *initSkipList(struct leapList *skipList[]) {
int i;
for (i=0;i<maximum_level;i++)...
JamesL_22
Votes: 0
Answers: 0
Is there any way to join two Java LinkedLists in O(1)?
I am mostly looking for someone to confirm the following is correct.
It is trivially obvious that joining two linked lists (singly or doubly) into one linked list "tail to head" can be done...
Stephen Nicholas
Votes: 0
Answers: 3
How to create a bi-directional linked list and do not use pointer in ADT?
Now I am trying to define an ADT and use it to create a linked list, and I want to let it fit the function List newList(void);. I know what should I do if it's like List* newList(void);. If I am tryin...
MonstBlu
Votes: 0
Answers: 1
Why does the latest "append" in my python doubly linked list have no effect?
This is part of my doubly linked list deque python code.
The 'appendleft' function written almost similar to the 'append' function is normally output. Why is the last 'append('apple')' code not output...
kpmso
Votes: 0
Answers: 1