Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add:Exploring Linked lists #104

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Updated linked-list post
krishna16sharma committed Oct 21, 2023
commit 1ed9b971b21538ab2b022cfbf2750f4b6dc92d4f
20 changes: 10 additions & 10 deletions _posts/2023-11-11-exploring-linked-lists.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: post
title: Exploring Linked Lists:A Beginner's Guide
subtitle: All you need to know to get started with Linked lists.
categories: Programming, Data Structures, Algorithms
tags: [Linked Lists, Singly Linked Lists, Doubly Linked Lists, Circular Linked Lists]
author: Krishna Sharma S
banner:
image: assets/images/banners/linked-list.png
heading_style: "font-size: 4.25em; font-weight: bold; text-decoration: underline"
subheading_style: "color: gold"
layout: post
title: Exploring Linked Lists:A Beginner's Guide
subtitle: All you need to know to get started with Linked lists.
categories: Programming, Data Structures, Algorithms
tags: [Linked Lists, Singly Linked Lists, Doubly Linked Lists, Circular Linked Lists]
author: Krishna Sharma S
banner:
image: assets/images/banners/linked-list.png
heading_style: "font-size: 4.25em; font-weight: bold; text-decoration: underline"
subheading_style: "color: gold"
---
# Intoduction
A linked list is a daaata structure where the elements (nodes) are stoerd in non contiguous memory locations and are linked using pointers.