/linkedlist

Embedded System Programming

Primary LanguageCMIT LicenseMIT

Linked List

This is a task of the Embedded System Programming course.

This repo contains the implementation of Linked List written in C.

the structure of Linked List is as follow:

struct linked_list{
  char *data;
  int index; /* position of the element in the list, normally not used with Linked Lists, just for exercise */
  struct linked_list *next;
};

The master branch currently contains basic functions which satisfly the following requirements:

image