Ivan Fesiuk

Full Stack Developer
All ingenious is simple

  • Home
  • Блог
  • Інструкція
  • Проєкти
  • Галерея
  • Про мене
© Ivan Fesiuk. All Rights Reserved.
This Web Site Generated by Jekyll Docker Containers .
Ivan Fesiuk
DEBUG: Lang: uk | IsTranslated: true
🇬🇧

Circular Linked List

  • Algorithms
  • Single
  • Linked List
  • Development
нд, 23.06.2019
What is Circular Linked List? In single linked list, every node points to its next node in the sequence and the last node points NULL. But in circular linked list, every node points to its next node i ... Read more

Double Linked List

  • Algorithms
  • Linked List
  • Development
нд, 23.06.2019
What is Double Linked List? In a single linked list, every node has a link to its next node in the sequence. So, we can traverse from one node to another node only in one direction and we can not trav ... Read more