Useful links for linked lists in c

  • Thread starter Thread starter ria_m
  • Start date Start date
  • Tags Tags
    Links
AI Thread Summary
The discussion centers on finding detailed resources for understanding linked lists in C programming. A user expresses frustration with the limited information available in many online resources and seeks guidance on comparing nodes within a linked list. Participants suggest that sharing relevant code could facilitate more targeted assistance, as implementations can vary significantly. Key points include the importance of iterating through the list using pointers, accessing data elements within nodes, and ensuring appropriate data comparisons. A specific tutorial from cprogramming.com is mentioned as a potentially helpful resource.
ria_m
Messages
4
Reaction score
0
i need useful links for linked lists in c!thanks
 
Technology news on Phys.org
well most of them they have limited information for them...i'm trying to find something more detailed..i want to compare the list's node and I'm little confused!
 
OK, post up your relevant code and maybe we can help you. You will find that each implementation is different, so if you are looking for something specific to the way you are doing it, you might not find it.

You should iterate through your list by following pointers to from one node to the next - do you understand how to do this?

Each node will contain a data element. Can you access this data element? I assume you have a struct representing your list_node - do you understand the syntax for referencing the variables inside?

What kind of data do you have? Are you using an appropriate comparison?

The first link that comes up for "c programming linked list" is a nice tutorial over at cprogramming.com - is this not helpful to you?

http://www.cprogramming.com/tutorial/c/lesson15.html
 
thanks for your help!
 
Thread 'Star maps using Blender'
Blender just recently dropped a new version, 4.5(with 5.0 on the horizon), and within it was a new feature for which I immediately thought of a use for. The new feature was a .csv importer for Geometry nodes. Geometry nodes are a method of modelling that uses a node tree to create 3D models which offers more flexibility than straight modeling does. The .csv importer node allows you to bring in a .csv file and use the data in it to control aspects of your model. So for example, if you...
I tried a web search "the loss of programming ", and found an article saying that all aspects of writing, developing, and testing software programs will one day all be handled through artificial intelligence. One must wonder then, who is responsible. WHO is responsible for any problems, bugs, deficiencies, or whatever malfunctions which the programs make their users endure? Things may work wrong however the "wrong" happens. AI needs to fix the problems for the users. Any way to...

Similar threads

Replies
3
Views
2K
Replies
3
Views
1K
Replies
5
Views
2K
Replies
2
Views
975
Replies
4
Views
2K
Replies
1
Views
1K
Replies
14
Views
7K
Back
Top