MENU

Fun & Interesting

All you need to know about linked lists, Libft

Oceano 8,960 lượt xem 1 year ago
Video Not Working? Fix It Now

typedef struct 📖must_read_book 📖
{
The C programming 👑-https://amzn.to/3VJEC4X
Command line, IDE, GIT tldr-ELI5-https://amzn.to/3BDPZ7x
CSAPP, great book to understand computers deeply-https://amzn.to/3VKUG6a
Best book on computer architectures- https://amzn.to/4fmtu4N
OS- https://amzn.to/4gfq5pI
Crafting interpreters, all about interpreters compilers-https://amzn.to/4iKssmi
Clean Code- https://amzn.to/4iDziK1
} ty_for_support_♥️;

Code
https://github.com/suspectedoceano/libft

Article
https://medium.com/@jalal92/linked-lists-a79f6a9478d8

Useful sources
https://suspectedoceano.notion.site/Libft-acef68297e3a478f9463fe9d70023bb0?pvs=4

#libft

Codevault Playlist
https://youtube.com/playlist?list=PLfqABt5AS4FmXeWuuNDS3XGENJO1VYGxl&si=jtpkhRQTbZZxhupQ

Timestamps
00:00:00 TL;DR theory
00:16:12 lst_new, create a new node
00:18:20 lstadd_front, push a node at the top of the list
00:21:00 lst_size, return the len of a list
00:22:42 lst_last, find the last node in a list
00:24:02 lst_addback, append a node in a list
00:26:18 lst_delone, delete a node in a list
00:27:36 lst_clear, clean a linked list
00:32:10 lst_iter, apply a func to all nodes in a list
00:33:30 lst_map, create a new list from source

typedef struct 🔗s_links🔗
{
👨🏻‍🏫 Udemy course for total beginners, pre_knowledge before C (Overflow, 2’s complement, BASH, VIM…) - https://www.udemy.com/course/oceano_0b0001/?referralCode=C218698D6A3E3D16EEEB
📑 Notion community page (FREE coding sources) - https://suspectedoceano.notion.site/Ocean-s-42-fd42e3ed0f6049ca98fb3b290b84d4d0?pvs=4
🧾 Medium (code articles) - https://medium.com/@jalal92
📲 Telegram group - https://t.me/suspectedoceanO
💻 GitHub - https://github.com/suspectedoceano
🛸 Discord - https://discord.gg/hkUvRaDcEP
🐦 Twitter - https://twitter.com/SuspectedOceano
☕️ ChannelSupport - https://www.buymeacoffee.com/suspectedoceano (if you read this, you are already supporting, TY!)
} 🔗t_links🔗

Comment