Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
linked-nodes
- Page 1
Classes and Linked Nodes
Programming
Software Development
15 Years Ago
by sleight
…problem: Creating a
linked
node using classes. I managed to create a list of
linked
nodes
but the problem …was that I forgot to delete the
nodes
I created so…find a way to delete the previously created
nodes
. Here is the code I'm working on…it because I need to free up the
nodes
I dumped over at memory. Is this …
Re: Classes and Linked Nodes
Programming
Software Development
15 Years Ago
by Murtan
For the most part in c++, a class is almost the same as a struct. The key difference is that members in a struct default to public, in a class they default to private. You made all of the members of your class public so it shouldn't really matter. Your list handling needs some work though. In your code, start is a tree and current and temp are …
Re: Classes and Linked Nodes
Programming
Software Development
15 Years Ago
by sleight
Oh, maybe that's why I filled up the memory, I created duplicates and not pointers. Thanks.:D
printing linked nodes?
Programming
Software Development
14 Years Ago
by Phoenix_7
… a constructor for my Node class and I've
linked
3 string
nodes
together and I need to print them in order…
Re: Linked Lists
Programming
Software Development
20 Years Ago
by Tight_Coder_Ex
… very simple. Take for example a doubly
linked
list, it has a pointer to the previous item and … helps you has some idea where to start. Google "
linked
lists" and I'm sure you'll get lots…
Linked List in C++: Problem with struct inside class
Programming
Software Development
14 Years Ago
by J0shu
…#include <math.h> class
Linked
{ public: // Constructor: initializes a set of
nodes
Linked
(); //
Linked
methods bool addNode(Point p); bool removeNode… // Destructor: delete the set of
nodes
~
Linked
(); private: // Definition of the
nodes
on the array of
nodes
/*typedef struct _Node* pNode; typedef …
linked list
Programming
Software Development
14 Years Ago
by Eagles36
…. // Postcondition: The value returned is the number of
nodes
in the
linked
// list. // // void list_head_insert(node*& head_ptr, const node::value_type&…; tail_ptr // ) // Precondition: start_ptr and end_ptr are pointers to
nodes
on the same //
linked
list, with the start_ptr node at or before the…
Nodes in c++
Programming
Software Development
10 Years Ago
by kortneycoles
…quot;; return 0; } ///-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=:-@ ///----------------------------------------------------------------- //Creates a
linked
list by adding a new last node after each call…each call to the getOne function, thus inserting
nodes
into // list in reverse order. returns …
Re: Linked list using 2 structs and pointers
Programming
Software Development
13 Years Ago
by Labdabeta
…(NULL).setNext(NULL).setVal(val); if (numNodes>0) delete[]
nodes
;
nodes
=tmpNodes; numNodes++; return *this; } LinkedList<T> &pop…
linked list - add in order - Need Help
Programming
Software Development
13 Years Ago
by brandon93s
…am writing a program in C to build
linked
lists from scratch. However, I am … itself. By this, I mean that the
nodes
will automatically be placed in the correct location.…it is greater than or less than its surrounding
nodes
. Please see my code below. #include &…am trying to place 10 random numbers into
nodes
into the list, sorted. But on print…
Re: linked list - add in order - Need Help
Programming
Software Development
13 Years Ago
by hwoarang69
…; in_list = 1; } /* insert number in middle of
linked
list*/ cur_node = head; while(cur_node != NULL &&…cur_node->next; } /* insert number at end of a
linked
list */ if(in_list == 0) { cur_node = head;…
Linked List Swap Problem
Programming
Software Development
14 Years Ago
by virtue
… not swap 2 elements of 2
nodes
in the
linked
list.Actually I can swap 2
nodes
by changing their links but I…
Linked List Problem
Programming
Software Development
15 Years Ago
by dirnthelord
I was trying to implement a queue using
linked
list and the problem is when i try to call … up and no errors too. just NULL values for all
nodes
. take a look @ this code and tell me if there… is anything wrong... ps. Do i have to call the
Linked
list call when implementing the Queue? how can I access…
Linked List Node insertion errors
Programming
Software Development
14 Years Ago
by speedofdark
…class list { private: struct node //declaration of the
nodes
{ int info; //node's data contents node …stores the address of the next //node in the
linked
list }; public: list(); //constructor ~list(); //destructor…
Re: Linked List Swap Problem
Programming
Software Development
14 Years Ago
by Ancient Dragon
All you have to do is swap the data item of the two
nodes
-- just like you would swap any two integers. And please use code tags the next time you post code so that people can read it.
Re: Linked List Swap Problem
Programming
Software Development
14 Years Ago
by yashsaxena
As Ancient Dragon said All you have to do is swap the data item of the two
nodes
-- just like you would swap any two integers. But be careful while dealing with pointers.
Re: Linked List Node insertion errors
Programming
Software Development
14 Years Ago
by nezachem
… with [CODE] node *newnode = new node();[/CODE] Regarding a temp
nodes
in other functions, you should initialize them as well, but…
Re: Linked Lists Segmentation Fault
Programming
Software Development
12 Years Ago
by pattilupwned
… with the segmentation. I was writing code to add the
nodes
to the top of the list, not the end like… it hits the 'else' part, it doesn't add subsequent
nodes
. The 'if' statements works - adding the first node to the…
Re: linked list not printing
Programming
Software Development
14 Years Ago
by chiwawa10
… me that your copy logic is not right. [CODE]//copy
linked
list while(curr != NULL) { node* copy = new node; copy->… list. The 'next' pointer of the new list is not
linked
up. After exiting the while loop, you will not have… any way to access the 'copied'
nodes
. This will created a serious memory leak issue.
Re: Linked List Problem
Programming
Software Development
15 Years Ago
by dirnthelord
… node. If you're going to keep the list doubly
linked
(with both next and prev pointers) the prev pointer for… Queue Class for the Queue Implementation, so I used both
Linked
List and Node classes and I now have a perfectly… working
Linked
List Queue. and Thanks again, I could understand your explanation…
Re: Linked List with Structs
Programming
Software Development
14 Years Ago
by elsiekins
… head node and a tail node with zero or more
nodes
linked
in between? Because if that's your intent, you'll… my code you will see that i do have them
linked
- the linked_list_create is fine i have had it checked…
Re: Linked List- Distinct Items- Problems
Programming
Software Development
14 Years Ago
by leftovas17
…NULL; } /* // Used to add given string item to a
linked
list // Require: A valid string is passed // Ensure: If … for the list // Require: The HEAD of a
linked
list is passed // Ensure: Head and Tail will… tail = NULL; //reset while( ptr != NULL ) { //if more
nodes
temp = ptr->next; //temp spot for next node when…
Re: Linked List Problem
Programming
Software Development
15 Years Ago
by Murtan
… node. If you're going to keep the list doubly
linked
(with both next and prev pointers) the prev pointer for… pointer to the next node (which is what forms the
linked
list). So there is no 'link' to the next node…
Re: Linked List with Structs
Programming
Software Development
14 Years Ago
by gerard4143
Are you trying to create a double
linked
list that has a head node and a tail node with zero or more
nodes
linked
in between? Because if that's your intent, you'll have get your 'linked_list_create' to create and link both of them(head and tail node) initially.
Linked List project
Programming
Software Development
13 Years Ago
by sonicx2218
…); ListIterator listIterator = list.listIterator(); System.out.println("Enter # of
nodes
"); number = sc.nextInt(); if (number > 0) { for (i…
Re: linked list unwanted list duplication
Programming
Software Development
15 Years Ago
by sid78669
… calls to global functions. you are working with
nodes
and usually with
linked
list they should be part of a class. [URL…
Re: Linked List- Distinct Items- Problems
Programming
Software Development
14 Years Ago
by leftovas17
… = NULL; //reset tail = NULL; //reset while( ptr != NULL ) { //if more
nodes
temp = ptr->next; //temp spot for next node when…
Re: Linked List- Distinct Items- Problems
Programming
Software Development
14 Years Ago
by yan0
… = NULL; //reset tail = NULL; //reset while( ptr != NULL ) { //if more
nodes
temp = ptr->next; //temp spot for next node when…
Re: Linked list using 2 structs and pointers
Programming
Software Development
13 Years Ago
by Ancient Dragon
Advice? Yes,just do as you were told. What don't you understand about the instructions? What have you done so far to correct your program? >node* start; //but arent these the two //pointers being referred to? No. He means to put two pointers inside he structore, one for next and the other for previous
nodes
within the
linked
list.
Re: Linked list problem
Programming
Software Development
11 Years Ago
by anas.man
In computer science, a
linked
list is a data structure consisting of a group of
nodes
which together represent a sequence. Under the…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC