Story Details

  • Numbering should start at zero (1982)

    Posted: 2025-03-21 09:35:33

    Edsger Dijkstra argues that array indexing should start at zero, not one. He lays out a compelling case based on the elegance and efficiency of expressing slices or subsequences within an array. Using half-open intervals, where the lower bound is inclusive and the upper bound exclusive, simplifies calculations and leads to fewer "off-by-one" errors. Dijkstra demonstrates that representing a subsequence from element 'i' through 'j' becomes significantly more straightforward when using zero-based indexing, as the length of the subsequence is simply j-i. This contrasts with one-based indexing, which necessitates more complex and less intuitive calculations for subsequence lengths and endpoint adjustments. He concludes that zero-based indexing offers a more natural and consistent way to represent array segments, aligning better with mathematical conventions and ultimately leading to cleaner, less error-prone code.

    Summary of Comments ( 97 )
    https://news.ycombinator.com/item?id=43433599

    Hacker News users discuss Dijkstra's famous argument for zero-based indexing. Several commenters agree with Dijkstra's logic, emphasizing the elegance and efficiency of using half-open intervals. Some highlight the benefits in loop constructs and simplifying calculations for array slices. A few point out that one-based indexing can be more intuitive in certain contexts, aligning with how humans naturally count. One commenter notes the historical precedent, mentioning that Fortran used one-based indexing, influencing later languages. The discussion also touches on the trade-offs between conventions and the importance of consistency within a given language or project.