A linked list is a data structure in which the elements contain references to the next (and optionally the previous) element. Linked lists offer O(1) insert after and removal of any element with known memory location, O(1) list concatenation, and O(1) access at the front (and optionally back) ...

learn more… | top users | synonyms (1)

1
vote
2answers
25 views

Implementing the Dutch National Flag Program with Linked Lists

I wanted to sort a linked list containing 0s, 1s or 2s. Now, this is clearly a variant of the Dutch National Flag Problem. http://en.wikipedia.org/wiki/Dutch_national_flag_problem The algorithm for ...
2
votes
2answers
32 views

Using dynamic array to handle collisions in hash tables

Looking around at some of the hash table implementations, separate chaining seems to be handled via a linked list or a tree. Is there a reason why a dynamic array is not used? I would imagine that ...
0
votes
3answers
53 views

Recursive Maximum for a Linked List in Java

To learn recursion and also to write a custom linkedlist (not the LinkedList in java.util), I tried to create a recursive max() method as follows. I had to struggle a bit, but finally I got it ...
1
vote
4answers
55 views

removing node in linkedlist using java

I am trying to code a method for deleting the last Node in a linkedlist(for learning how to modify a linkedlist..I am not using the java library LinkedList class)..I tried to deal with the usecase ...
0
votes
2answers
52 views

invalid initialization of reference of type 'delai_assemblage*&' from expression of type 'delai_assemblage'

hi every body i have a problem in language C and i can't fix it here is my code : void demande_usine_stockage(entrepot *u_s,fournisseur f[],int *demande,delai_appro &d_a,delai_ass ...
-3
votes
1answer
15 views

Detecting a loop in linked lists.

I know that in order to find a loop in a linked list I can define two references to the list and move them at different speeds. Move one forward by 1 node and the other by 2 nodes. So if the linked ...
0
votes
1answer
38 views

Reverse singly linked list - Code improvement

I'm trying to improve my recursion skills (or probably gain them for the first time :)). For it, I've written out a Java code to reverse a singly linked list, which is as follows: node head, prev; // ...
0
votes
0answers
14 views

Single Linked List find 10th element When you are at 100th element

I know single linked list don't go backwards, but how can I achieve this ? ( No Double or Circular Linked Lists ). I faced this question at interview 1 mnth ago. I tried but can't figure it out. any ...
2
votes
3answers
76 views

Calculating Giant Numbers using a Linked List

Well, I got an assignment to build a scalable data type to use in a Fibonacci generator, and I have the assignment just about finished when I went to test it out to the 1000th number in the sequence. ...
2
votes
2answers
187 views

c++ how to pick random items from a linked list

I'm experimenting with a game program. I'm trying to have an random number of items generate. The code will produce the same item multiple times. I can get away with setting up a series of switch ...
1
vote
2answers
58 views

*Some* members of pointer array not initialized to null?

struct findaddress { struct findaddress *next[11]; struct user *myuser; }; int main(void){ struct findaddress *findhead=(struct findaddress *)(malloc(sizeof(struct findaddress))); int ...
1
vote
1answer
36 views

Why is the LinkedList.data null after returning from an insert?

First of all, this is part of a homework assignment, so please keep that in mind when answering. So I am attempting to use a generic LinkedList class, which a CustomerList class inherits from. All ...
1
vote
3answers
95 views

Where to set references to null, if references are passed by value in java?

The following code constructs 2 linkedlists and passes both of them to construct a 3rd merged linkedlist. However once merged, the l1 and l2 ( initially constructed ) linkedlist have changed. Where ...
-2
votes
1answer
38 views

The following code tries to sorts a linked list containing 0,1,2. But is giving incorrect result in some cases [closed]

This here is the code. insert function, adds a new value at the end, print functions prints the linked list and sort012 function tries to sort the linked list. I am getting incorrect results in some ...
-2
votes
1answer
49 views

how to solve linkedlist interview questions when interviewer ask us to do [closed]

In Interviews If interviewers ask us to implement linkedlist problems we have to write our own linked lists or we can just use predefined classed in java/c# ?
1
vote
2answers
50 views

Wrong output in searching a linked list

I created a linked list and then used the following search function to get the position of the data field,but it returns the value as the last element of the linked list.I am unable to guess why int ...
2
votes
2answers
51 views

C Error Dereferencing pointer to incomplete type

I made this code,following the functions given in the book "Fundamental Of Data Structures in C",I made the following code for implementing a simple linked list,but I don't seem to get where I am ...
2
votes
2answers
37 views

Warnings when creating a singly linked list with arrays

#include <stdio.h> typedef struct { int data; struct node *next; }node; void print(node *head) { node *tmp = head; while (tmp) { printf ("%d ", tmp->data); tmp = ...
0
votes
1answer
45 views

Java linked list within a linked list

I am trying to do a little project I found online which is creating a Library Catalog of books and users. I created 3 classes - Book, User, Manager. Manager has all the methods of checking out ...
1
vote
2answers
65 views

Fast allocation of linked list and slow deallocation

I'm a C++ novice and I've run into a frustrating problem - I have this templated LinkedList implementation: template <typename U> class LinkedList : std::iterator<std::input_iterator_tag, ...
1
vote
1answer
63 views

Can data structures be completely abstracted in C?

I am currently building a personal library of data structures, and I realized that they may be able to be abstracted completely by have the data in it be a void *. So let's say that I create a linked ...
0
votes
2answers
69 views

Add node at end or beginning of linked list in C

I'm trying to create a server/client program with named pipes in Linux. Every time a client connects and authenticates, the server stores his data (pid and password) in a linked list. The problem is ...
-8
votes
0answers
75 views

Merge 3 sorted lists (optimal) [closed]

I need to merge 3 sorted lists with recursion, but optimal with max 1 pass trough each list. Here is function for 2 lists. So no merge(merge(a, b), c) alowed. ListNode *mergeTwoLists(ListNode *head1, ...
0
votes
2answers
78 views

How to combine in one loop serial numbers and null?

I'm busy with implementation of singly linked list and have 2 functions: insert_back and insert_after. Here is the listing of them: void insert_back(int data) { node *temp1; temp1 = ...
0
votes
1answer
36 views

Java: how to get first floorEntry() in LinkedList w/o traversal. LinkedSortedMap

I have a list that needs to be traversed in order of insertion. However, i want to find "starting points" by using floorEntry and ceilingEntry on the values. So I need a collection with the following ...
0
votes
3answers
49 views

C, calling linked list function from another file

I have two files, list_funcs.c and list_mgr.c . List_funcs.c has a function to insert a node into a linked list: #include <stdio.h> #include <string.h> #include <stdlib.h> struct ...
0
votes
2answers
52 views

Reversing a List Iteratively-Logical Error

Here I am trying to reverse the list iteratively. But the problem is that how large is the list say 3->2->4->NULL, in the end it becomes 3->NULL i.e. the list with only one element. Please tell what ...
0
votes
1answer
45 views

My program is crashing after I changed it. Reading from files

I am doing a project and when I try to use a file to help me keep recording the number of the register of a user. After I had the part of creating a file, my program start crashing everytime I call a ...
3
votes
2answers
67 views

Purpose of Curly Brace Usage of C Code found in Linux (include/linux/list.h)?

I came across the following code within Linux (include/linux/list.h). I'm confused about line 713. In particular, I don't understand ({ n = pos->member.next; 1; }). What is the curly braces doing? ...
0
votes
2answers
40 views

Linked List inside a linked list with templates

I am basically building a database structure which I can add leagues,football teams and fixtures to. I have made a linked list template and have a linked list of fixtures in each team and linked list ...
1
vote
1answer
35 views

How do I cycle through a linked list to reduce a value?

I have a class called SensorNode, which contains (among other things) a linked list of sensor objects. The node has a data member for the amount of battery power it has left, and the sensors each ...
0
votes
1answer
38 views

Potentially Uninitialized Local Pointer Variable - Alternatives?

The following code is part of my implementation for a class member function that rents lockers and thus creates nodes in a linked list: void SelfStorageList::rentLocker(Locker e) { int count = 0; ...
0
votes
1answer
43 views

Linked list Node Insert to Front - all content value changing each time I add a value

I am making a singly linked list whose node has a string and a pointer to next node. I have written a function to insert to front of the linked list. The problem is that whenever I insert a new value ...
0
votes
1answer
39 views

Inserting Before/After Node in Linked List

I am trying to insert nodes in a list based on the value of a data member. Basically, if the member isVip evaluates to true, that node gets precedence, and should be inserted ahead of any regular node ...
1
vote
1answer
51 views

How can I compare entries in linked lists?

I am doing a C project that manages the number of rooms in a building, where I can either choose to reserve or pre-reserve a room. For that, I will ask the user to input some data (name, the ammount ...
3
votes
3answers
114 views

Merge Sort on Strings in Java - Linked List

I have an excercise in which I have to insert into a linked list a string. Suppose the String is the following: "Java Coding Is Great" After the Merge Sort, the linked list is supposed to look like ...
0
votes
2answers
59 views

How transform a pointer function to a class function? c++

I've got this delete function: Node* deleteNode(Node *head, Node *node) { if (head != 0) { if (head == node) head = head->next; else head->next ...
-4
votes
3answers
98 views

What is the significance of Dynamic data structure(like linked list)

Once the program that created the linked list is closed without deleting the dynamic memory and I know that dynamic memory needs to be deleted then how can i get it back to work after reopening the ...
0
votes
1answer
58 views

Singly linked list pseudo-code sum specific elements

I wrote some pseudo-code for a singly linked list. The function should increase each occurrence of the key (k) by the value of the previous element's key, the only exception is the 1st element (which ...
1
vote
2answers
18 views

an enclosing instance that contains Queue.Node is required

So I'm working on a Binary Search Tree and need to do a Level Order Traversal. I will be printing out all the keys that are on the same level. Problem I'm having right now is that I need to create a ...
1
vote
4answers
69 views

linked list program to insert and delete nodes

#include<stdio.h> #include<stdlib.h> struct node { int data; struct node *next; }*first=NULL; void insert() { struct node *temp; struct node *nn=(struct node*)malloc(sizeof(struct ...
0
votes
2answers
52 views

incompatible pointer type in c pointers

#include<stdio.h> #include<stdlib.h> struct node { int data; struct node *next; }; int insert (struct node *head, int data); int print (struct node *head); int main() { ...
4
votes
1answer
71 views

Bad memory allocation in Python LinkedList

I have some problem regarding a Python simple linked list and its memory consumption. This is the code: import sys class Record: def __init__(self,elem): self.elem=elem ...
0
votes
4answers
85 views

How to declare a linked list in c

struct node { int data; struct node *next,*prev; }; void insert(struct node *head,int data){ if(head == NULL){ head = (node *)malloc(sizeof(node)); --- code continues----- I just want to know the ...
1
vote
1answer
55 views

How can I reduce code repetition in my C code (unsure due to null pointers)

In my project I have linked links of struct elem and each elem has many different attributes. Currently each time I want to get an elems attribute, I call a function such as: ...
0
votes
0answers
69 views

Implementing a Singly Linked List in C [closed]

How would I complete sl_push_front and sl_display so that sl_push_front inserts the long integer v at the beginning of the singly linked list and sl_display prints the contents of the list on stdout? ...
0
votes
1answer
47 views

How does indirection work in this code?

I was reading the answer to Merging two sorted linked list. The code: #define SWAP_PTRS(a, b) do { void *t = (a); (a) = (b); (b) = t; } while (0) Node* MergeLists(Node* list1, Node* list2) { ...
-1
votes
1answer
94 views

Is Linked List still relevant? [closed]

I came across this article: Should you ever use Linked List. It cites that given the technological advances in available memory and RAM structures, using arrays would be better than Linked List. ...
0
votes
2answers
34 views

can't cout data from the head of a linked list outside of my add function

So i've been teaching myself linked lists and been messing around trying to write some very basic functions for them. Basically what i've been working with struct ListNode{ int data; ListNode *next ...
-3
votes
2answers
86 views

why do we use pointer to a pointer

#include <stdio.h> #include <stdlib.h> struct llnode { int data; struct llnode *next; }; void insert (struct llnode **head, int data); int main () { struct llnode *head; ...

1 2 3 4 5 64