Compare commits

..

7 commits

Author SHA1 Message Date
Bruno BELANYI a2290a427b Add Gap Buffer post
All checks were successful
ci/woodpecker/push/deploy/2 Pipeline was successful
2024-07-06 23:49:31 +01:00
Bruno BELANYI 01aafd372b posts: gap-buffer: add movement 2024-07-06 23:49:31 +01:00
Bruno BELANYI bbdb14bad8 posts: gap-buffer: add deletion 2024-07-06 23:49:31 +01:00
Bruno BELANYI 430144ee90 posts: gap-buffer: add insertion 2024-07-06 23:49:31 +01:00
Bruno BELANYI 0e10a21386 posts: gap-buffer: add growth 2024-07-06 23:49:31 +01:00
Bruno BELANYI b9120b2076 posts: gap-buffer: add accessors 2024-07-06 23:49:31 +01:00
Bruno BELANYI 0aedb24ecd posts: gap-buffer: add construction 2024-07-06 23:49:31 +01:00

View file

@ -37,9 +37,9 @@ shorter/longer as required.
## Implementation
I'll be writing a sample implementation in Python, as with the rest of the
[series]({{< ref "/series/cool-algorithms/">}}). I don't think it showcases the
elegance of the _Gap Buffer_ in action like a C implementation full of
`memmove`s would, but it does makes it short and sweet.
series. I don't think it showcases the elegance of the _Gap Buffer_ in action
like a C implementation full of `memmove`s would, but it does makes it short and
sweet.
### Representation