Skip to content
johnhenry edited this page Nov 8, 2014 · 1 revision

#Glossary

Here are the definitions for a few common terms from the documentation

  • enqueue - v. - to insert an object into an ordered data structure. - v. - to remove the first inserted object from an ordered data scructure.
  • dequeue - v. - to remove the first inserted object from an ordered data scructure.
  • pop - v. - to remove the last inserted object from an ordered data scructure.
  • queue - an. - a data structure optimized for removing the first inserted objects (dequeueing)
  • stack - n. - a data structure optimized for removing the last inserted objects (popping)