diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2013-05-25 11:08:10 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-05-28 09:25:01 -0700 |
commit | 1506510c170d23b8f769757dc81904f334c40281 (patch) | |
tree | c5f89d862073b5aca88dd082a08591d097cbb8bb /t/t9301-fast-import-notes.sh | |
parent | revision: use object_array_filter() in implementation of gc_boundary() (diff) | |
download | tgif-1506510c170d23b8f769757dc81904f334c40281.tar.xz |
object_array_remove_duplicates(): rewrite to reduce copying
The old version copied one entry to its destination position, then
deleted any matching entries from the tail of the array. This
required the tail of the array to be copied multiple times. It didn't
affect the complexity of the algorithm because the whole tail has to
be searched through anyway. But all the copying was unnecessary.
Instead, check for the existence of an entry with the same name in the
*head* of the list before copying an entry to its final position.
This way each entry has to be copied at most one time.
Extract a helper function contains_name() to do a bit of the work.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9301-fast-import-notes.sh')
0 files changed, 0 insertions, 0 deletions