python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Why my Circular Singly Linked List Java code not working? It says that Node is null can't put data on it
For the meantime, I'm trying to figure out the basics of how Circular Singly Linked List works. In this case, I'm creating a program in which, user can input from 1 to 3, the number of linked nodes. H...
fahis23
Votes: 0
Answers: 1
Dynamic array inside a linked list in C
I'm writing this post after hours of madness and thinking. Probably this is the most stupid exercise you are gonna read today but for me, after hours of exercise, is not like that.
Going back to the q...
DottorBooom
Votes: 0
Answers: 1
C linked list incompatible pointer type
struct list_node {
int value;
struct list_node *next;
};
struct linked_list {
int size;
struct list_node *head;
};
void print_linked_list(struct linked_list *list){
struct linked...

Enezx
Votes: 0
Answers: 2
make a for loop for linked list class
i want to iterate over my custom class linked list, could anyone help me for that, i couldn't find it straightforward in web.
the problem is when i want to iterate over linked list its give me an erro...
amirhossein
Votes: 0
Answers: 1