#linkedlist
std::collections::LinkedList has been updated
ncameron.org nrc @ncameron.org · Apr 24
Rust 1.95 released last week (blog.rust-lang.org/2026/04/16/R...) and has a few cool things in it. `if let` guards might look niche, but I think they solve the last reason for having nested match expressions where it doesn't feel 'right'. Not a huge deal, but nice to scratch away that itch.
Announcing Rust 1.95.0 | Rust Blog
Empowering everyone to build reliable and efficient software.
blog.rust-lang.org
April 24, 2026 at 11:01 PM
Rake::LinkedList class overview:
July 28, 2023 at 5:20 PM
My first LinkedList Python in the book:

and I got it wrong, but baby steps.

I'm starting to understand the idea of reversing a LinkedList.

Since they do have indexes you can retrieve in O(1) time, you can work with half of the LinkedList to check if they are palindrome.

#algos
January 7, 2025 at 8:52 PM
also i was entirely unaware std::collections had a LinkedList type until i read the release notes lmao
May 15, 2025 at 9:20 AM
Blogged: Zig's new LinkedList API (it's time to learn @ fieldParentPtr)

www.openmymind.net/Zigs-New-Lin...

#zig #ziglang
April 10, 2025 at 1:40 PM
Just shipped linkedlist v0.2 with DoublyLinkedList! 🚀

Now supports bidirectional traversal, backward iteration, and precise node removal (removeHead/Tail, deleteFirst/Last). Type-safe, iterable, works everywhere.

📦 jsr.io/@tamatar/lin...
💻 github.com/KiranNamawar...

#TypeScript #DataStructures
@tamatar/linkedlist - JSR
@tamatar/linkedlist on JSR: A TypeScript implementation of linked list data structures
jsr.io
October 12, 2025 at 3:01 PM
Numa discussão no linkedin tinha uns bonitos que estavam argumentando algumas questões sobre Java:

- o uso de streams implica 10x penalidade
- usar linkedlist para appendar é melhor do que arraylist

Usei JMH para tentar simular e não encontrei nada disso...
August 21, 2025 at 5:28 PM
Shipped my first package on @jsr.io : linkedlist — a tiny, type‑safe Linked List for TS/JS. O(1) append/prepend, iterable, chainable. Works in Deno/Bun/Node/browser and others.

JSR: jsr.io/@tamatar/lin...
Code: github.com/KiranNamawar...

#TypeScript #JavaScript #LinkedList #DataStructure
@tamatar/linkedlist - JSR
@tamatar/linkedlist on JSR: A TypeScript implementation of linked list data structures
jsr.io
October 11, 2025 at 7:24 PM
This is why I use LinkedList instead of Vec at work because it's more functional
November 14, 2025 at 3:48 PM
linkedList
September 2, 2025 at 2:01 AM
I just completed "Disk Fragmenter" - Day 9 - Advent of Code 2024 #AdventOfCode adventofcode.com/2024/day/9

github.com/Manjago/aoc2...

Joshua Bloch tweeted: "Does anyone actually use LinkedList? I wrote it, and I never use it".

LinkedList came in handy in this puzzle :-)
Day 9 - Advent of Code 2024
adventofcode.com
December 9, 2024 at 6:14 PM
From my previous post:

I might have reached the limits on how practically fast my LinkedList can be to the GDScript array

I'll make some replies explaining my results, but if you want to take a look at the code yourself, I've been uploading the addon to a public repo
codeberg.org/Wolfmyths/Go...
Godot-LinkedList
A Godot Engine add-on that adds Linked Lists
codeberg.org
April 30, 2026 at 7:35 AM
LinkedList Reversal
July 26, 2023 at 6:14 PM
Tudo varia da forma como você usa a lista. Se for usar como Fila ou Pilha, LinkedList. Se for alocar e usar como referência, iterar, ArrayList.
August 21, 2025 at 7:07 PM
Нове відео вже на каналі чекаю вас. www.youtube.com/watch?v=AJ-u... #java #lesson #data
ArrayList, Map, Set, LinkedList у Java — просто на прикладах!
YouTube video by DevLogDays
www.youtube.com
July 25, 2025 at 7:17 PM
I'm pretty sure the postgreSQL query I ran the other day used an index, which probably used a linked list under the hood.

But as far as implementations or even using Java's LinkedList, nope. docs.oracle.com/javase/8/doc...
LinkedList (Java Platform SE 8 )
docs.oracle.com
January 20, 2025 at 10:13 PM
Mas acho que a forma como ensinam LinkedList (como uma alternativa a arrays) realmente não ajuda.

Elas brilham como tijolos para construir outros algoritmos (LinkedHashMap, SkipList, etc.)
January 30, 2025 at 5:38 PM
List and LinkedList in Go: The Overlooked Power Tool Every Go Engineer Forgets
#golang

medium.com/@yuseferi/l...
List and LinkedList in Go: The Overlooked Power Tool Every Go Engineer Forgets
Most Go developers master slices and maps early. Few ever reach for container/list — and that blind spot quietly limits how we model…
medium.com
February 3, 2026 at 4:15 AM
I have a lot more trouble with like graph questions and linkedlist stuff that's labeled as "medium", but I banged out a seven-line solution to this "hard" problem in like five minutes.
February 4, 2025 at 9:19 PM
【📃ブログ更新】

【Unity】C#のCollection LinkedList
blog.garnetcode.jp/collection_3

#Unity
【Unity】C#のCollection LinkedList - GARNET LOG
C#のコレクション、LinkedListについて
blog.garnetcode.jp
October 14, 2024 at 1:54 AM
justdrafts | linkedlist — Matthew Inman on AI Art

betweendrafts.com/justdrafts/2...

#AI #art
Matthew Inman on AI Art
The whole comic goes way deeper, but this zinger alone made my day.
betweendrafts.com
October 8, 2025 at 1:35 PM
best I can tell, doing something like a series or a linkedlist mostly isn't possible due to the underlying iterator design reusing the base object vs chaining. Chaining would let us trim the series/list.

e.g. `foo.next(); foo.next(); foo.next()` not `foo.next().next().next()`
August 18, 2025 at 5:27 PM
Day 43 of #100DaysOfCode
Implemented the pop() method for a Doubly Linked List in JavaScript. Removing nodes from the end in O(1) time really highlights the power of having backward pointers. Handling edge cases like empty and single-node lists is becoming second nature.
#JavaScript #LinkedList
December 17, 2025 at 2:36 PM