Compare commits

..

7 commits

Author SHA1 Message Date
Bruno BELANYI 02b0214eb3 Add Gap Buffer post
All checks were successful
ci/woodpecker/push/deploy/2 Pipeline was successful
ci/woodpecker/cron/deploy/2 Pipeline was successful
2024-07-06 23:51:12 +01:00
Bruno BELANYI 388801dc92 posts: gap-buffer: add movement 2024-07-06 23:51:12 +01:00
Bruno BELANYI ad0e062316 posts: gap-buffer: add deletion 2024-07-06 23:51:12 +01:00
Bruno BELANYI 19aa4de9be posts: gap-buffer: add insertion 2024-07-06 23:51:12 +01:00
Bruno BELANYI 39bfa190f0 posts: gap-buffer: add growth 2024-07-06 23:51:12 +01:00
Bruno BELANYI 04de4e7028 posts: gap-buffer: add accessors 2024-07-06 23:51:12 +01:00
Bruno BELANYI e869ceafa9 posts: gap-buffer: add construction 2024-07-06 23:51:12 +01:00

View file

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