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)
I was trying to print a linked list of first 10 elements of linked list. But I face error while printing or while inputting
What can be the main issues in this code.
This is the case when I try to print first two elements: https://drive.google.com/file/d/1Ve9HH4tzBmWGZsW5lHjNrTXtHNh1w33o/view?usp=sharing
This is the case w...
Deb Jyoti
Votes: 0
Answers: 0
error in rmoving duplicates from unsorted linked list
QSN. Given an unsorted linked list of N nodes. The task is to remove duplicate elements from this unsorted Linked List. When a value appears in multiple nodes, the node which appeared first should be ...
Tanvi
Votes: 0
Answers: 1
how to get length of linked list in golang with recursive of method pointer?
I have a single linked list. how do I get the length of the linked list with a recursive method that had a pointer receiver?
type Node struct {
data int
next *Node
}
I had tried like this, but al...
galih wisnuaji
Votes: 0
Answers: 1
C - Creating a new linked list from another list starting at the nth node
I want to implement a droplist function that creates a new list with the elements of the input list exept the first n elements. My approach his to go trough the list and increment the counter so I kno...
Kuklivacban
Votes: 0
Answers: 2