Linked lists are memory efficient, dynamic in size and it easier to insert and delete element
2025-01-07 17:39:47
10
jakesmith6191 :
linked lists are the birds of the software world. never seen one and every one I did see was reallll suspicious
2025-01-07 04:00:35
6501
Ярослав :
linked list is quite convenient to use for creating dialogue chains in games
2025-01-07 07:36:30
1087
Tom :
making a linked list was my interview problem.... i make websites 🤣
2025-01-07 04:08:48
586
donnynomoney :
Arrays are static in C, tho so you kinda have to use a linked list if you dont know how much data you will receive
2025-01-07 08:20:06
51
. :
linked listed are a prerequisite for graphs and deeper computer science algorithms in low level languages such as C if you want fast code on tiny microcontrollers. replace next with left/right.
2025-03-05 02:49:13
1
Pythoness Programmer :
me in my next job interview because I refuse to do leetcodes again 🤣
2025-01-07 04:01:22
1923
rrr :
in my 8 yrs of coding.. i never used linkedlist 😂😂😂
2025-02-08 16:01:02
5
Echo Bucket :
A linked list is just a graph that’s in a line
2025-01-07 05:41:00
239
Dan :
What takes more time: iterating over an array or learning what a linked list is and how to properly use one, then telling everyone you know how to deal with your code?
2025-01-07 04:41:42
246
Tickertockeragainstmywill :
I work on an operating system. hashtables, yes. lots. binary search trees? yes. directed graphs?... yes. singly linked lists outside of a directed graph? not that I've seen in almost a decade.
2025-01-07 04:35:39
748
the underdog hedgehog :
“Can’t you just be patient for a linear time solution” ✨
2025-01-07 10:35:43
444
pigmee :
Just use doubly linked lists
2025-01-07 06:16:52
148
Blas de lezo :
Blockchain is a fancy term for linked list
2025-01-07 12:01:29
65
tcvp :
w 20+ years of experience in sw development, and who knows how manu millions of lines of code in hundreds of codesbases; I have never seen a linked list outside of leetcode.
2025-01-07 14:37:18
51
mycorgithinksimcool :
this should be a CES keynote
2025-01-07 03:25:11
1324
Ashes :
I need this as a sticker.
2025-01-07 03:26:44
80
OreaCode :
I have never seen a linked list in production
2025-01-07 07:34:54
42
Nyan Helsing :
its actually just a hashtable where the keys are integers lol
2025-01-07 04:28:13
8
Adam Schlesinger :
I work in game dev so... no I can't use an array
2025-01-07 05:13:08
1
Link :
In ~15 years of programming.. I've never, ever, seen anyone use a linked list. Array, yes; Dictionary, yes; Set, very rarely; Linked List, NEVER
2025-01-07 10:46:25
8
Harold Stubbs82 :
ok but what about a trie implemented as indices into linked arrays?
2025-01-07 08:48:39
1
user9450350470253 :
In my masters we did circly linked list I dare you to find a good use
2025-01-07 16:11:02
6
EZ2M :
Glad my degree taught me that's how HDDs save data across sectors (or used to), a timely operation you'd want to optimize. Of course, the last time that actually mattered to me was in college.
2025-01-07 03:45:38
38
dogfood777 :
how do you reverse a linked list? in place? with NO ADDITIONAL VARIABLES?
2025-01-07 04:14:31
8
To see more videos from user @alberta.nyc, please go to the Tikwm
homepage.