Популярное

Музыка Кино и Анимация Автомобили Животные Спорт Путешествия Игры Юмор

Интересные видео

2025 Сериалы Трейлеры Новости Как сделать Видеоуроки Diy своими руками

Топ запросов

смотреть а4 schoolboy runaway турецкий сериал смотреть мультфильмы эдисон
dTub
Скачать

Understanding and implementing a Linked List in C and Java

Автор: Jacob Sorber

Загружено: 2019-07-31

Просмотров: 272488

Описание:

Patreon ➤   / jacobsorber  
Courses ➤ https://jacobsorber.thinkific.com
Website ➤ https://www.jacobsorber.com
---


Understanding and implementing a Linked List in C and Java // Linked lists are one of the most fundamental data structures that any computer programmer needs to understand and be able to use. It's linear, like an array, but makes it much easier and faster to insert items into the list and remove things from the middle of the list. This video describes the basic concepts behind linked lists and provides code examples in both C and Java to help you get started.

Follow-on video about doubly-linked lists:
   • Doubly Linked List (in C)  





***

Welcome! I post videos that help you learn to program and become a more confident software developer. I cover beginner-to-advanced systems topics ranging from network programming, threads, processes, operating systems, embedded systems and others. My goal is to help you get under-the-hood and better understand how computers work and how you can use them to become stronger students and more capable professional developers.


About me: I'm a computer scientist, electrical engineer, researcher, and teacher. I specialize in embedded systems, mobile computing, sensor networks, and the Internet of Things. I teach systems and networking courses at Clemson University, where I also lead the PERSIST research lab.

More about me and what I do:
https://www.jacobsorber.com
https://people.cs.clemson.edu/~jsorber/
http://persist.cs.clemson.edu/

To Support the Channel:
like, subscribe, spread the word
contribute via Patreon --- [  / jacobsorber  ]
rep the channel with nerdy merch --- [https://teespring.com/stores/jacob-so...]

Source code is also available to Patreon supporters. --- [https://jsorber-youtube-source.heroku...]




Want me to review your code?
Email the code to [email protected]. Code should be simple and in one of the following languages: C, C++, python, java, ruby. You must be the author of the code and have rights to post it. Please include the following statement in your email: "I attest that this is my code, and I hereby give Jacob Sorber the right to use, review, post, comment on, and modify this code on his videos."

You can also find more info about code reviews here.
   • I want to review your code.  

Understanding and implementing a Linked List in C and Java

Поделиться в:

Доступные форматы для скачивания:

Скачать видео mp4

  • Информация по загрузке:

Скачать аудио mp3

Похожие видео

array(10) { [0]=> object(stdClass)#5860 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "KFbm6lkMhgw" ["related_video_title"]=> string(25) "Doubly Linked List (in C)" ["posted_time"]=> string(19) "5 лет назад" ["channelName"]=> string(12) "Jacob Sorber" } [1]=> object(stdClass)#5833 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "2Ti5yvumFTU" ["related_video_title"]=> string(50) "Understanding and implementing a Hash Table (in C)" ["posted_time"]=> string(19) "5 лет назад" ["channelName"]=> string(12) "Jacob Sorber" } [2]=> object(stdClass)#5858 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "5dscMs2hnDI" ["related_video_title"]=> string(64) "LinkedList vs ArrayList in Java Tutorial - Which Should You Use?" ["posted_time"]=> string(21) "4 года назад" ["channelName"]=> string(16) "Coding with John" } [3]=> object(stdClass)#5865 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "bXsKnUGndEU" ["related_video_title"]=> string(54) "Should you avoid linked lists? (linked list vs arrays)" ["posted_time"]=> string(19) "5 лет назад" ["channelName"]=> string(12) "Jacob Sorber" } [4]=> object(stdClass)#5844 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "UbhlOk7vjVY" ["related_video_title"]=> string(28) "How to Implement a Tree in C" ["posted_time"]=> string(21) "4 года назад" ["channelName"]=> string(12) "Jacob Sorber" } [5]=> object(stdClass)#5862 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "IrGjyfBC-u0" ["related_video_title"]=> string(41) "Master Pointers in C: 10X Your C Coding!" ["posted_time"]=> string(21) "2 года назад" ["channelName"]=> string(13) "Dave's Garage" } [6]=> object(stdClass)#5857 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "6fnmXX8RK0s" ["related_video_title"]=> string(56) "5 weird (but useful) data structures in computer science" ["posted_time"]=> string(23) "1 месяц назад" ["channelName"]=> string(8) "Fireship" } [7]=> object(stdClass)#5867 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "CWtpteyDlu8" ["related_video_title"]=> string(73) "Полный Айсберг Языков Программирования" ["posted_time"]=> string(27) "8 месяцев назад" ["channelName"]=> string(5) "ZARGO" } [8]=> object(stdClass)#5843 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "CpgsQLSc7KY" ["related_video_title"]=> string(51) "What is an object pool, and how to create one in C?" ["posted_time"]=> string(27) "5 месяцев назад" ["channelName"]=> string(12) "Jacob Sorber" } [9]=> object(stdClass)#5861 (5) { ["video_id"]=> int(9999999) ["related_video_id"]=> string(11) "2ybLD6_2gKM" ["related_video_title"]=> string(65) "you will never ask about pointers again after watching this video" ["posted_time"]=> string(21) "2 года назад" ["channelName"]=> string(9) "Low Level" } }
Doubly Linked List (in C)

Doubly Linked List (in C)

Understanding and implementing a Hash Table (in C)

Understanding and implementing a Hash Table (in C)

LinkedList vs ArrayList in Java Tutorial - Which Should You Use?

LinkedList vs ArrayList in Java Tutorial - Which Should You Use?

Should you avoid linked lists? (linked list vs arrays)

Should you avoid linked lists? (linked list vs arrays)

How to Implement a Tree in C

How to Implement a Tree in C

Master Pointers in C:  10X Your C Coding!

Master Pointers in C: 10X Your C Coding!

5 weird (but useful) data structures in computer science

5 weird (but useful) data structures in computer science

Полный Айсберг Языков Программирования

Полный Айсберг Языков Программирования

What is an object pool, and how to create one in C?

What is an object pool, and how to create one in C?

you will never ask about pointers again after watching this video

you will never ask about pointers again after watching this video

© 2025 dtub. Все права защищены.



  • Контакты
  • О нас
  • Политика конфиденциальности



Контакты для правообладателей: [email protected]