A linked list in which each node only points to the next element in the list, as opposed to a doubly-linked list in which each node points to both the next and the previous element.
2
votes
2answers
25 views
adding at the end of a singly-linked list in constant time
I'm trying to write a method for adding at the end of a singly linked list in a constant time. I don't know how to assign a pointer to the last node in the list in constant time. This method runs in ...
1
vote
2answers
35 views
removing from a linked list
I made an SListClass which stands for sinle-linked list class and a node class SListNode. I'm having a problem with the removeLast method. When I print out the list of nodes, the first item is still ...
0
votes
6answers
45 views
printing nodes from a singly-linked list
I made a node class which is a linked list class. Is there any way I can print out elements in this list ? I made my print() method but it only returns the first element which is 21. How do I iterate ...
0
votes
2answers
101 views
Print Singly linked list in reverse using recursion - Java
Hi I am having a little trouble trying to print a singly linked list in reverse order using recursion. I have looked at some examples but my method doesn't take any parameters. I want to print it out ...
-1
votes
1answer
66 views
How to reverse singly linked list - Java [closed]
Hi I am wondering how to go about reversing a singly linked list. From the examples I've looked at so far, the reverse methods have void as their return type and I need one that has singly linked list ...
2
votes
1answer
85 views
Big O complexity to merge two lists
Given 2 singly linked lists already sorted, merge the lists.
Example:
list1: 1 2 3 5 7
list2: 0 4 6 7 10
---> 0 1 2 3 4 5 6 7 7 10
Despite from the fact that the solution is quite simple and ...
-2
votes
2answers
72 views
Segmentation fault (core dumped) while running the program
#include<stdio.h>
#include<string.h>
#include<malloc.h>
//#include<conio.h>
struct list
{
char *value;
struct list *link;
};
struct list *arr[12];int val;
int hf(char *item)
{
...
-4
votes
0answers
66 views
What is the difference between linked list and list? [duplicate]
I want to ask the difference between list and linked list and how they can work in memory allocation as according to my knowledge they both work on same form but when we have to use which one in ...
0
votes
2answers
47 views
Linked list Bubblesort is not quite right
I'm working on a bubblesort algorithm for a linked list. It's moving the data about, but it's not quite sorting the data properly. For now I'm only worried about linked lists of ints. Where is the ...
0
votes
1answer
48 views
iterating through a linked list inserting STL vector values
I am trying to iterate over a vector and get the data into the linked list nodes... I know I can use the STL iterator for vector, but what can I use to loop over the linked list? I don't think I can ...
1
vote
2answers
107 views
Remove duplicate elements from a sorted linked list
I am attempting a C program to remove duplicates from a Sorted linked list and i am using a simple concept of traversing the list from the start node. While traversing, compare each node with its next ...
-1
votes
1answer
50 views
Search and Delete Function in Singly priority linked List
I want to perform a search operation in a priority linked list in java, I have already write a search and delete method for that but i am facing difficulties in calling these methods to my main ...
0
votes
0answers
74 views
Generic sorted singly linked list
I am implementing my own singly linked list for my java class and I thought everything was looking good until I ran the program and it seems to get stuck in an infinite loop in different places each ...
2
votes
2answers
48 views
Why Can't I Insert a New Node at Index 0 (Head) of This Linked List?
The Code:
/*
* File: problem5.c
* Author: levihackwith
* Description: Write a Pop() function that is the inverse of Push(). Pop() takes a non-empty list, deletes the head node, and returns the ...
0
votes
1answer
81 views
multiple variables stored in single node java linked list
I was curious as to learn how you would add multiple ints to a Node in a LinkedList in java (single circular). I had found a thread on SO and was reading on it but wasn't sure exactly how it worked. ...
4
votes
2answers
159 views
Insertion sort on linked list in C?
I've tried searching for a problem similar to mine, but haven't found much help.
I have a linked list of structs of this type:
struct PCB {
struct PCB *next;
int reg1, reg2;
};
I first ...
-1
votes
2answers
88 views
Error in using Linked List in C program [closed]
I am working on an extra credit project for class and here are the specs:
You will write a c program (you should use a design tool but I do not want to see it)
The program will use dynamic memory ...
4
votes
4answers
70 views
C: Removing a node from singly-LinkedList1 and inserting it at the head of singly-LinkedList2
I'm doing a computer science project that simulates an operating system's process scheduler. I have multiple singly-linked lists, and need to move nodes between them.
I am trying to write a general ...
4
votes
2answers
126 views
Operations on singly linked list in C++ (with int and char variables) [duplicate]
I'm a beginner programmer in C++ and my problem concerns implementing operations on singly linked list.
My single linked list must have both "char" and "int" variables and be able to: remove and add ...
-3
votes
1answer
78 views
Java RecursiveLinkedList contains method [closed]
I am working on a simple linkedList class, one of the requirement for this class is to use recurs to implement the contains method, add method and remove method.
Based on example I found I have ...
0
votes
1answer
25 views
All node's id are same with the last added node's id
int add_server(Server *list, char *server_id, char *capacity)
{
Server *new_node=(Server *)malloc(sizeof(Server));
new_node->id=server_id;
new_node->capacity=atoi(capacity);
...
-4
votes
1answer
65 views
Removing an element from a linked list (Java)? [closed]
I'm trying to create a method that removes an element from a bag (collection) that is in a singly linked list. My current method isn't removing things correctly. If there is a duplicate, its supposed ...
0
votes
2answers
211 views
Sorting singly linked list by second node element. Java
I am trying to get a way to sort this singly linked list by the last names that have been entered into it. I thought I might try a bubble sort but I am having problems traversing the list by the ...
1
vote
0answers
343 views
Alphabetically sort LinkedList without using Collections by first and last name in Java
I am trying to write code which creates a linked list of names in alphabetical order from a file.
The names must be ordered by last name, then first name. The second layer of sorting is where I am ...
-2
votes
2answers
290 views
Weird result on simple linked list code [closed]
Okay. I am paying around with a simple linked list code.
I keep the head node as public. then I declare a pointer (head2)to store the head node of the first list(first) in the main program. I declare ...
0
votes
3answers
102 views
multiple linked lists for different objects in c++
consider these classes (simplified)
class Character
{
public:
char name[20];
char type[20];
int strength;
};
class inventoryItem
{
public:
char name[20];
};
class weapon: public ...
0
votes
4answers
218 views
remove node from a single linked list c programming
There's nothing wrong when i built the program in both VS & codeblock. While, when i ran it, it either broke after i typed in the index number or just show letters infinitely...
...
0
votes
1answer
59 views
Linked list value being changed
Relevant code:
Constant Def:
#define MAX_NAME_LEN 15 /* Maximum length of any attribute or relation is 15. */
Struct Def:
typedef struct schnode {
char name[MAX_NAME_LEN + 1]; /* The name of the ...
-1
votes
2answers
102 views
searching for the node within the singly-linked list
I have the singly linked list consisting of nodes with the following structure:
struct date
{
int day, month, year;
};
struct Node
{
string item;
date Exp;
int count;
Node ...
-3
votes
1answer
114 views
How can we simulate/implement an array using singly and doubly linked lists? [closed]
I have implemented singly liked list and doubly linked list in Java, now my teacher asked me to implement array using singly and doubly linked list (In Java). I came across a few solutions on how to ...
1
vote
1answer
95 views
reverse linked list - Recursion
Sorry if this is a very basic question, I am just trying to learn recursion.
The below code can reverse a linked list.
I understand the logic until line 3, but I am confused when line 4 will be ...
0
votes
1answer
73 views
Efficiently Finding if an element exists in a linked List
Presuppose there is a linked list with information. My Program architecture rests upon being able to find out if certain information already exists in an individual node in this linked list.
(Ie, ...
2
votes
1answer
61 views
Problems with setting pointers correctly while creating singly-linked list
struct Number_Node
{
int number;
struct Number_Node* next_number;
};
int counter=0;
int main()
{
int input=0;
Number_Node* n;
Number_Node* h;
Number_Node* t;
do
{
...
0
votes
2answers
72 views
linked list with function
I'm trying to create a program which creates and display linked list.
Now i'm having trouble with my create_list() function, it doesn't create any list.
What i'm doing wrong ?
Sorry for bad english ...
4
votes
2answers
528 views
Swap nodes in a singly-linked list
I am trying to swap two nodes. For example if the nodes are a and b I am passing the pointers
(a-1)->next and (b-1)->next which are basically nodes a and b.
void swap(struct stack **a,struct ...
0
votes
1answer
131 views
simple linear linked list in vb.net using class
how can a linear linked list be implemented in vb.net using class?
how can this class be modified for linear linked list?
also the methods for traversing the list, deleting nodes, etc
Public Class ...
1
vote
2answers
68 views
Is using a function that assigns to a null pointer using the null pointer as an argument valid in C?
I'm trying to insert into the front of a linked list and also return an allocated head for when head is NULL, but it seems to only work in the event that head is not NULL.
essentially, if
node* x = ...
1
vote
1answer
117 views
Is a Python list a singly or doubly linked list?
I'm wondering what the order of complexity for a Python v2.7 list being built up using append() is? Is a Python list doubly linked and thus it is constant complexity or is it singly linked and thus ...
0
votes
1answer
52 views
Using a function pointer as parameter
I am trying to add a node to the front of a linked list using the following:
struct Node *addFront(struct List *list, void *data) {
So far I have the following:
struct Node *front = (struct Node ...
0
votes
1answer
70 views
How to define a LinkedList? [closed]
In designing a LinkedList, should I just define a Node class, or put Node as a memember of LinkedList, as shown below? Because a Node starting from the Head is already a linkedList.
Which one is ...
0
votes
3answers
213 views
A linked list with sublists
I am struggling a bit on how to make multiple sub-lists in a singly-linked list in java, without using java generics. I've read through multiple questions in overflow and most of them implement ...
0
votes
3answers
184 views
How to declare singly linked-list in c?
Can anyone explain what the difference between the following declarations of a single linked list in c is? More specifically, why the first one isn't correct?
typedef struct
{
char *data;
...
0
votes
0answers
165 views
Queue class / FIFO LinkedList issue
I have a Queue class with the following queue.h
#include <iostream>
#include <stdio.h>
#include "state.h"
using namespace std;
// Node class
class Node {
public:
State elem;
...
0
votes
0answers
124 views
How do I overload the '=' operator in a singly linked list?
I have to write an entire .hpp implementation file consisting of function definitions based of a given .h file with all the declarations and descriptions. I'm stuck on overloading the operator = ...
-3
votes
1answer
254 views
get loops in a linked list C#
I have a program to make a linked list in c# like this:
class Point
{
public string Name { get; set; }
public List<Point> NextPoints { get; set; }
public Point()
{
...
0
votes
2answers
102 views
Linked List Segmentation Fault
Why does this cause a SegFault Error? I've tried to run a backtrace with gdb, but it has given me no help.
Any help would be appreciated, I've been pulling my hair out over this for hours.
my node.h
...
0
votes
2answers
309 views
Cannot iterate through my linked list in c++ [closed]
I've been working on this for a while now and I can't seem to figure out how to correctly iterate through my linked list. Right now, I can run the program, and it runs, but I do not get any results ...
1
vote
2answers
73 views
overloaded + and - operators, trouble figuring out how to check if the “amount” being passed in is negative
I have overloaded these operators to help me traverse a doubly linked list, but have run into a small bug, and being still new to c++ I am stuck. I never accounted for it the "amount" entered in ...
0
votes
2answers
122 views
C++ No Default Constructor? Trying to Create Insert Method for LinkedList
I am really new to C++, and am having trouble making a insert() function work with a LinkedList. Here is the code I was given, starting off:
#include <iostream>
#include <cassert>
...
0
votes
1answer
193 views
C++ Linked List Contains() Function
I am really new to C++, and am having trouble making a insert() function work with a LinkedList. Here is the code I was given, starting off:
#include <iostream>
#include <cassert>
...



