Linked List – Part VI

I believe that I am finished with the implementation and testing of the DoubleLinkList class using templates in C++. At this point I should be able to start using the class. Hope to get to that sometime this weekend.

Following is the screen capture of a console displayed on my Windows
machine using Visual Studio 2013 while running the test code for double linked lists: Continue reading “Linked List – Part VI”

Linked Lists – Part IV

Hope you had a nice weekend. Over the weekend and for preparation to start the design and implementation of the DoubleLinkList class I started updating the test code for the LinkedLists test class. The current code builds a crude list taking into account the pre and next members of the Node class.

Following is a screen capture of the console for Visual Studio 2013 when executing a partially commented out test: Continue reading “Linked Lists – Part IV”

Linked Lists – Part III

I spent some time enhancing and testing the SingleLinkList class. I will stop at this point. On the next post related linked lists will design and implement the DoubleLinkList class using the same methods that have been implemented on the SingleLinkList class. Of course, while testing one class or the other some new method may be added or an existing method may be modified. This is typical in software development.

Following is a screen capture of a console generated by Visual Studio 2013 when running the test code for the SingleLinkList class: Continue reading “Linked Lists – Part III”