Wednesday 3 May 2017

DSA Lab 5 - Linked List

Task 1:

Write the complete implementation of double ended queue by using linked list (as discussed in class) containing the following functions:

  • enqueueAtTail()
  • dequeueAtTail()
  • enqueueAtHead()
  • dequeueAtHead()
  • isEmpty()
  • isFull()
  • resizeQueue()   // do you really need this function?? think about it!

PS: Best of luck for your mid term lab exam. Don't be late in exams!

No comments :

Post a Comment