{
  "translations": {
    "en": {
      "sc1": "Let's look at how the <code>enqueue</code> operation works.",
      "sc2": "We will enqueue the the value 10. Create a new node with this value.",
      "sc3": "The <code>next</code> field of the <code>rear</code> node is assigned to point to the new node.",
      "sc4": "Advance <code>rear</code> to point to the new link node.",
      "sc5": "Increase <code>size</code> by 1."
    }
  },
  "code": {
    "java": [{
      "url": "../../../SourceCode/Java/Lists/LQueue.java",
      "lineNumbers": false,
      "startAfter": "/* *** ODSATag: LQueueEnqueue *** */",
      "endBefore": "/* *** ODSAendTag: LQueueEnqueue *** */",
      "tags": {
        "sig": 2,
        "setNext": 3,
        "rear": 4,
        "size": 5
      }
    }],
    "java_generic": [{
      "url": "../../../SourceCode/Java_Generic/Lists/LQueue.java",
      "lineNumbers": false,
      "startAfter": "/* *** ODSATag: LQueueEnqueue *** */",
      "endBefore": "/* *** ODSAendTag: LQueueEnqueue *** */",
      "tags": {
        "sig": 2,
        "setNext": 3,
        "rear": 4,
        "size": 5
      }
    }]
  }
}
