↧
Computer Algorithms: Stack and Queue
Introduction Every developer knows that computer algorithms are tightly related to data structures. Indeed many of the algorithms depend on a data structures and can be very effective for some data...
View ArticleComputer Algorithms: Detecting and Breaking a Loop in a Linked List
Introduction Linked lists are one very common and handy data structure that can be used in many cases of the practical programming. In this post we’ll assume that we’re talking about singly linked...
View ArticlePHP: Arrays or Linked Lists?
Arrays vs. Linked List If we talk about arrays and linked lists we know the pros and cons about both of them. No matter which programming language we use arrays benefit from direct access to its items,...
View Article