{
  "translations" :{
    "en": {
      "sc1": "Class <code>AList</code> stores the list elements in the first <code>listSize</code> contiguous array positions. In this example, <code>listSize</code> is 5.",
      "sc2": "Array positions correspond to list positions. In other words, the element at position $i$ in the list is stored at array cell $i$. Here, the element at position 3 in the list (and index 3 in the array) is highlighted.",
      "sc3": "The head of the list is always at position 0.",
      "sc4": "Random access to any element in the list is quite easy. Given some position in the list, the value of the element in that position can be accessed directly.",
      "sc5": "Thus, access to any element using the <code>moveToPos</code> method followed by the <code>getValue</code> method takes constant time."
    }
  }
}
