Thread: Making A Linked List From A 2D Array

  1. #1
    Registered User
    Join Date
    Sep 2014
    Posts
    6

    Making A Linked List From A 2D Array

    I have a 2D array, array[20][3]. Each row represents a storm and each column represents month #, wind speed, and pressure in that order. This data is read from a file and auto-fills the array. I need to be able to give users the ability to add an additional storm or delete a storm. I know that a linked list would be the best approach but I'm not very familiar with linked lists. Any idea on where to start would be much appreciated

  2. #2
    Registered User
    Join Date
    Nov 2010
    Location
    Long Beach, CA
    Posts
    5,909
    For starters: Linked Lists in C Tutorial - Cprogramming.com

    Also, Google "linked list tutorial" and other similar phrases. There is a huge​ amount of good resources out there.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. std::list making a linked list?
    By jocdrew21 in forum C++ Programming
    Replies: 22
    Last Post: 12-29-2013, 12:00 PM
  2. Dynamic List Char Array & Double Linked List
    By Roadrunner2015 in forum C Programming
    Replies: 18
    Last Post: 10-20-2013, 01:31 PM
  3. Replies: 4
    Last Post: 09-18-2011, 04:05 PM
  4. array of linked list
    By jjeanie in forum C Programming
    Replies: 2
    Last Post: 05-07-2007, 10:08 PM
  5. Making a doubly linked list
    By mlupo in forum C Programming
    Replies: 1
    Last Post: 10-16-2002, 09:05 PM

Tags for this Thread