C programming: At what conditions whether to use linked lists or arrays

CWC
9 Min Read

Arrays: The OG Data Structure

What is it?

An array is basically a collection of items stored at contiguous memory locations. In layman’s terms, it’s like a row of lockers, each one next to the other, each holding something valuable—like your favorite snacks or comic books.

Why use it?

  1. Speedy Gonzalez: Direct access to any element using an index. It’s like being able to jump straight to your favorite song in a playlist.
  2. Memory Efficient: Because they’re one solid block of memory, arrays are cache-friendly. Your CPU loves that! ?
  3. Easy-Peasy: No hassles with complex data structures or algorithms. It’s like a basic T-shirt; it works, it’s simple, and you don’t have to think too hard about it.

Sample Code


#include <stdio.h>

int main() {
    int grades[5] = {90, 85, 77, 95, 80};
    printf("Your math grade: %d\n", grades[0]);  // Output: Your math grade: 90
    return 0;
}

Linked Lists: The Flexible Maverick

What is it?

A linked list is a sequence of elements, where each element points to the next one. Imagine it like a scavenger hunt; each clue (node) leads you to the next one.

Why use it?

  1. Dynamite: Need to add or remove elements? Linked lists are dynamic, so they can grow or shrink as needed.
  2. Insert? Delete? No Sweat!: Changing the list structure is as simple as updating a few pointers.
  3. No Wasted Space: Unlike arrays, you don’t need to allocate memory that you might not use.

Sample Code


#include <stdio.h>
#include <stdlib.h>

struct Node {
    int data;
    struct Node* next;
};

int main() {
    struct Node* head = (struct Node*)malloc(sizeof(struct Node));
    head->data = 42;
    head->next = NULL;

    printf("The answer to life, the universe, and everything: %d\n", head->data);  // Output: 42
    return 0;
}

My Hot Take ?️

If you’re building something simple, or you’re dealing with a fixed size of data, stick with arrays. They’re like the vanilla ice cream of data structures—classic and reliable. But if you need to get all fancy, adding and removing elements on the fly, then go for linked lists. They’re like the toppings bar at a frozen yogurt shop—endless possibilities!

Both linked lists and arrays can be used in storing linear data of the same type, but each has some advantages and disadvantages over the other.

At what conditions whether to use linked lists or arrays in C Programming

Linked Lists Linked lists are preferred when the size of the arrays needs to be dynamic, that is, when you do not know the number of elements or items that will be in the list. For the arrays, the size of the array must be known in advance and the allocated memory storage is equal to the upper limit on the number of array’s elements.

Linked lists are most preferred over arrays when there is no need for random access to any of the elements.
Linked lists are preferred where there is need to insert or delete data elements with ease. It is more difficult for you to add new elements in an array. This is because you have to shift the existing elements in order for you to create a room for the elements being inserted. For instance, if you have a sorted list of ages in an array age[]=[23, 31, 37, 43, 56, 75] and you need to insert a new age 29, then you must move all the elements after 23 for you to maintain the sorted order of the list.

ArraysArrays are always preferred when you need random or indexed access to the data elements.

Arrays are used when memory is a concern. When the arrays are filled up, they usually use less memory than the linked lists.

It’s most appropriate to use arrays when you need to fast iterate through all the elements in a sequence. You just need to use the math pointer on the array in order to access each element.

Arrays are preferred over the linked lists whereby you know the number of elements in advance and therefore you are able to make correct memory allocations for the data.

The following factors are considered to choosing between an array and a linked list.
  • Memory
  • Accessing Elements
  • Addition/Deletion of elements
  • Sorting

When to Use Arrays

  1. Memory: Arrays are contiguous blocks of memory. So if you’ve got a tight memory situation, arrays are more cache-friendly.
  2. Access: Need to jump to the 5th or 100th element? Arrays let you do that super fast with index-based access.
  3. Simplicity: Dude, arrays are just easier to set up and use. No need to deal with pointers and all that jazz.
    
    
    #include <stdio.h>
    
    int main() {
        int myArray[5] = {1, 2, 3, 4, 5};
        printf("Third element: %d\n", myArray[2]);  // Output will be 3
        return 0;
    }
    

    When to Use Linked Lists

    1. Dynamic Size: If you’re in a situation where you’ve gotta add or remove elements a lot, linked lists are your BFF.
    2. Insertions & Deletions: With arrays, you’ve gotta shift elements around to insert or delete. Linked lists? Nah, just change a couple of pointers.
    3. Different Data Sizes: If you’re storing elements of various sizes, linked lists are more memory-efficient.

When to Use Linked Lists

  1. Dynamic Size: If you’re in a situation where you’ve gotta add or remove elements a lot, linked lists are your BFF.
  2. Insertions & Deletions: With arrays, you’ve gotta shift elements around to insert or delete. Linked lists? Nah, just change a couple of pointers.
  3. Different Data Sizes: If you’re storing elements of various sizes, linked lists are more memory-efficient.

#include <stdio.h>
#include <stdlib.h>

struct Node {
    int data;
    struct Node* next;
};

int main() {
    struct Node* head = NULL;
    head = (struct Node*)malloc(sizeof(struct Node));
    head->data = 1;
    head->next = (struct Node*)malloc(sizeof(struct Node));
    head->next->data = 2;
    head->next->next = NULL;

    printf("First element: %d\n", head->data);  // Output will be 1
    return 0;
}

My Two Cents ?

Arrays are my go-to for stuff like simple data storage or when I know the size ain’t gonna change. Linked lists are my jam when I need flexibility, like in queues or stacks.

In some cases, you could also look into other data structures like dynamic arrays or even skip lists if you want to get a little crazy! ?

In Closing

Overall, the choice between arrays and linked lists really depends on what you’re trying to pull off. It’s not about what’s better overall, but what’s better for your specific needs. Thanks for tuning in, and remember, in the world of programming, always stay curious and keep coding! ✌️?

Share This Article
Leave a comment

Leave a Reply

Your email address will not be published. Required fields are marked *

English
Exit mobile version