All you need to know about linked lists, Libft

Описание к видео All you need to know about linked lists, Libft

🇮🇹🍕🍝Canale Italiano -    / @onaeco_ita  
. Code
https://github.com/suspectedoceano/libft

Article
  / linked-lists  

Useful sources
https://suspectedoceano.notion.site/L...

#libft

Codevault Playlist
   • Linked lists for absolute beginners  

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_0...
📑 Notion community page (FREE coding sources) - https://suspectedoceano.notion.site/O...
🧾 Medium (code articles) -   / jalal92  
📲 Telegram group - https://t.me/suspectedoceanO
💻 GitHub - https://github.com/suspectedoceano
🛸 Discord -   / discord  
🐦 Twitter -   / suspectedoceano  
☕️ ChannelSupport - https://www.buymeacoffee.com/suspecte... (if you read this, you are already supporting, TY!)
} 🔗t_links🔗

Комментарии

Информация по комментариям в разработке