How to implement the Leitner algorithm (spaced repetition)?

In repeat interval algorithms, we have a specific Leitner . It is widely used for some flashcards based learning systems. The basic idea is to sort cards with features.

After a google search, it seems that in C, C ++ or Object-C there are no specific implementations, except for some Ruby implementations.

The question is here to find some clues.

thanks

+4
source share
1 answer

I believe the following software might be useful for you: http://flashqard-project.org/download.php . This is a C ++ implementation, and the source code is open. You can check it out.

0
source

All Articles