{
  "translations": {
    "en": {
      "sc1": "Here is an example showing insertion at the end of the list. 15 is the value to be inserted.",
      "sc2": "Create a new link node.",
      "sc3": "Copy <code>current.element()</code> to the new node (this value is <code>null</code>).",
      "sc4": "The <code>next</code> field for the new node is assigned to point to what <code>curr.next()</code> points to (which is <code>null</code>).",
      "sc5": "<code>curr</code>'s <code>next</code> field is assigned to point to the new link node.",
      "sc6": "The value of the current node is set to 15.",
      "sc7": "Update the new tail.",
      "sc8": "Increase the list size by 1.",
      "sc9": "Inserting into the empty list is similar to inserting at the end of the list. Here 15 is again being inserted.",
      "sc10": "Create a new link node.",
      "sc11": "Copy current.element() to the new node, which is null.",
      "sc12": "The <code>next</code> field for the new node is assigned to point to what <code>curr.next()</code> points to (which is <code>null</code>).",
      "sc13": "<code>curr.next()</code> is assigned to point to the new link node.",
      "sc14": "The value of the current node is set to 15.",
      "sc15": "Update the new tail.",
      "sc16": "Increase the list size by 1."
    }
  },
  "code": {
    "java": [{
      "url": "../../../SourceCode/Java/Lists/LList.java",
      "lineNumbers": false,
      "startAfter": "/* *** ODSATag: LListInsert *** */",
      "endBefore": "/* *** ODSAendTag: LListInsert *** */",
      "tags": {
        "sig": 2,
        "setnext": 3,
        "setelem": 4,
        "tail": 5,
        "listSize": 6
      }
    }],
    "java_generic": [{
      "url": "../../../SourceCode/Java_Generic/Lists/LList.java",
      "lineNumbers": false,
      "startAfter": "/* *** ODSATag: LListInsert *** */",
      "endBefore": "/* *** ODSAendTag: LListInsert *** */",
      "tags": {
        "sig": 2,
        "setnext": 3,
        "setelem": 4,
        "tail": 5,
        "listSize": 6
      }
    }]
  }
}
