From 297d68fadbc26f0f752c3272c9bc04094882b7fe Mon Sep 17 00:00:00 2001 From: Vinay Date: Sun, 26 May 2024 14:38:31 +0530 Subject: [PATCH] comm6 --- contrib/ds-algorithms/Linked-list.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md index 0ec285d..007674f 100644 --- a/contrib/ds-algorithms/Linked-list.md +++ b/contrib/ds-algorithms/Linked-list.md @@ -204,9 +204,13 @@ check the list is empty otherwise shift the head to next node. ## Real Life uses of Linked List Music Player – Songs in the music player are linked to the previous and next songs. So you can play songs either from starting or ending of the list. +
GPS navigation systems- Linked lists can be used to store and manage a list of locations and routes, allowing users to easily navigate to their desired destination. +
Task Scheduling- Operating systems use linked lists to manage task scheduling, where each process waiting to be executed is represented as a node in the list. +
Speech Recognition- Speech recognition software uses linked lists to represent the possible phonetic pronunciations of a word, where each possible pronunciation is represented as a node in the list. +
and more....