TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Gap Buffers: a data structure for editable text

27 pointsby jmlrover 7 years ago

1 comment

ttdover 7 years ago
I think implementing a simple text editor with undo&#x2F;redo support is a worthwhile exercise for everyone to do at least once in their career. It&#x27;s a great example of something that on first glance seems simple, but has quite a bit of subtlety especially when you get into styled text.<p>Piece chains are another good data structure to know for this application, though their implementation is more complex than a gap buffer. See <a href="http:&#x2F;&#x2F;www.catch22.net&#x2F;tuts&#x2F;piece-chains" rel="nofollow">http:&#x2F;&#x2F;www.catch22.net&#x2F;tuts&#x2F;piece-chains</a> for a nice tutorial.<p>Also worth reading for insight and motivation is the 1985 CACM article &quot;Concepts of the text editor Lara&quot; by J. Gutknecht.