Singly Linked Lists Tutorial - What is a Linked List?

  Рет қаралды 41,272

Tech With Tim

Tech With Tim

Күн бұрын

What is a linked list? This singly linked list tutorial will cover all of the important features of linked lists like: time complexity, implementation with pseudo code, pros, cons and more. After this data structure tutorial you should have a solid idea of how singly linked lists work and feel comfortable using and implementing them in your own code.
Playlist: • Queue Data Structure T...
◾◾◾◾◾
💻 Enroll in The Fundamentals of Programming w/ Python
tech-with-tim.teachable.com/p...
📸 Instagram: / tech_with_tim
🌎 Website techwithtim.net
📱 Twitter: / techwithtimm
⭐ Discord: / discord
📝 LinkedIn: / tim-rusci. .
📂 GitHub: github.com/techwithtim
🔊 Podcast: anchor.fm/tech-with-tim
💵 One-Time Donations: www.paypal.com/donate/?token=...
💰 Patreon: / techwithtim
◾◾◾◾◾◾
⚡ Please leave a LIKE and SUBSCRIBE for more content! ⚡
Tags:
- Tech With Tim
- Singly Linked List
- Single Linked List Tutorial
- Linked Lists
- Data Structures Tutorial
- Singly Linked List Data Structure
#LinkedList #DataStructures #ComputerScience

Пікірлер: 35
@emalda99
@emalda99 4 жыл бұрын
After watching your tutorials, no other tutorial comes any close to yours. You're amazing!
@maryamkameshki542
@maryamkameshki542 2 жыл бұрын
6:28 - find a value in the SLL method, 9:50 - add something to the beginning of the list, 11:10 - find and remove a node sheesh u explained it better than our data structure instructor 😂 great job! continue 👍💕
@niquebon
@niquebon Жыл бұрын
Thanks so much for explaining Singly Linked List very simply. Watched a lot of vids about Linked Lists and still couldn't understand it 100% but I can finally understand it now!!
@sylvesterdzimiri3266
@sylvesterdzimiri3266 5 жыл бұрын
I love watching ur videos man
@proddima
@proddima 2 жыл бұрын
thanks man that was very helpful, good explanation
@namescoby3997
@namescoby3997 Жыл бұрын
thanks this is really helping me to understand the traverse
@generalhimeko2639
@generalhimeko2639 2 күн бұрын
this video is so good
@shrinathjoshi704
@shrinathjoshi704 4 жыл бұрын
which software are you using for presentation ?
@jayvondied5385
@jayvondied5385 4 ай бұрын
u just saved me like 10 bands thanks
@KevinTempelx
@KevinTempelx 3 жыл бұрын
Thanks!
@themonster4759
@themonster4759 Жыл бұрын
thanks that's helpful episode
@sainco3036
@sainco3036 5 жыл бұрын
thanks.
@MagnusAnand
@MagnusAnand 5 жыл бұрын
Best drawing skills!
@TechWithTim
@TechWithTim 5 жыл бұрын
;)
@amongdoomers9464
@amongdoomers9464 4 жыл бұрын
🤣🤣
@sohadmad1823
@sohadmad1823 2 жыл бұрын
U're awesome
@aryanbhatia6992
@aryanbhatia6992 5 жыл бұрын
Please complete the PyQt5 series a.......
@Sergey_Latyshev
@Sergey_Latyshev 5 жыл бұрын
12:30 - but -3 is still in the memory. Memory leak!
@TechWithTim
@TechWithTim 5 жыл бұрын
Most languages automatically clean memory when all pointers to an object are deleted. For example, java does this automatically
@Sergey_Latyshev
@Sergey_Latyshev 5 жыл бұрын
Sure, but not all of them. C and C++ are still among the most popular languages.
@adarshsingh764
@adarshsingh764 5 жыл бұрын
@@Sergey_Latyshev i love c and c++ but these are annoying sometimes
@Sergey_Latyshev
@Sergey_Latyshev 5 жыл бұрын
@@adarshsingh764 I agree, but I believe it helps to understand better what a program is doing. Anyway, it doesn't hurt to write 'free (something);' when it is necessary.
@SkyFly19853
@SkyFly19853 5 жыл бұрын
Can it be used for Python or Ruby?
@carlosguerrero7381
@carlosguerrero7381 5 жыл бұрын
yes, any language you want to learn data structure.
@SkyFly19853
@SkyFly19853 5 жыл бұрын
@@carlosguerrero7381 I understand. Could you give me an example?
@carlosguerrero7381
@carlosguerrero7381 5 жыл бұрын
@@SkyFly19853 Important thing: you can pick either python or ruby in your comfortable writing. Feel free to check the link: www.rubyguides.com/2017/08/ruby-linked-list/ www.tutorialspoint.com/python/python_linked_lists
@SkyFly19853
@SkyFly19853 5 жыл бұрын
@@carlosguerrero7381 Sure, I check it out. Thank you very much for the link. 💯💯💯💯
@SkyFly19853
@SkyFly19853 5 жыл бұрын
@COOLBIAN57 I see what you mean... I am a visual learner, so, I wanted to see a solid example or code about it.
@longhotsummergames
@longhotsummergames 2 жыл бұрын
Why is adding to the end of the list faster than an array?
@EntrepreneurAffiliate
@EntrepreneurAffiliate 2 жыл бұрын
I'm assuming you mean why it's slower than an array. If that's what you mean its because you have to go through all of the linked list to get to the last element so the time complexity is o(n) but in an array all you need to do is append a value so its o(1). Linked lists are slower than an array when adding values at the end.
@Saotsu1
@Saotsu1 Жыл бұрын
@@EntrepreneurAffiliate It's not slower, you can add to the last with O(1), all you need to do is create an attribute called tail in the linked list and store the last node in it whenever you add a new node
@scullyy
@scullyy Жыл бұрын
why current = self.head. Why not operate on self.head? I have an idea why, but i'm a bit miffed at tutorials just not explaining why they do something.
@argghsgahghrw
@argghsgahghrw 2 ай бұрын
dude you need to be a professor
Circular Linked List Tutorial - Why Use a Circular List?
11:19
Tech With Tim
Рет қаралды 19 М.
Doubly Linked List Tutorial - What is a Doubly Linked List?
16:39
Tech With Tim
Рет қаралды 9 М.
Who has won ?? 😀 #shortvideo #lizzyisaeva
00:24
Lizzy Isaeva
Рет қаралды 64 МЛН
Despicable Me Fart Blaster
00:51
_vector_
Рет қаралды 24 МЛН
Data Structures in Python: Singly Linked Lists -- Insertion
27:02
LucidProgramming
Рет қаралды 95 М.
Learn Linked Lists in 13 minutes 🔗
13:24
Bro Code
Рет қаралды 271 М.
This Is Why Python Data Classes Are Awesome
22:19
ArjanCodes
Рет қаралды 796 М.
Linked Lists for Technical Interviews - Full Course
1:27:24
freeCodeCamp.org
Рет қаралды 350 М.
Binary Search Tree Tutorial - Traversal, Creation and More
32:30
Tech With Tim
Рет қаралды 32 М.
Introduction to Linked Lists - Data Structures and Algorithms
22:00
WHY IS THE HEAP SO SLOW?
17:53
Core Dumped
Рет қаралды 211 М.
Introduction to linked list
17:13
mycodeschool
Рет қаралды 1,6 МЛН