I am looking for an algorithm to implement a revision system. The data
is quite simple. There is a array of objects. New objects can be
added, objects can be deleted, and objects can be moved around in the
array.
I am looking for an efficient way to look at two versions of this list,
capture what changed, and be able to return to init state.
Can anyone point me to any good examples?
is quite simple. There is a array of objects. New objects can be
added, objects can be deleted, and objects can be moved around in the
array.
I am looking for an efficient way to look at two versions of this list,
capture what changed, and be able to return to init state.
Can anyone point me to any good examples?
Comment