add algorithm copy_while, copy_until

This commit is contained in:
bolero-MURAKAMI 2012-10-13 22:11:32 +09:00
parent f53be1a3d5
commit 9b9956f810
20 changed files with 649 additions and 0 deletions

View file

@ -56,6 +56,8 @@
#include "./sort_heap.cpp"
#include "./next_permutation.cpp"
#include "./prev_permutation.cpp"
#include "./copy_while.cpp"
#include "./copy_until.cpp"
#include "./clamp_range_copy.cpp"
#include "./clamp_range.cpp"
#include "./swap_element.cpp"
@ -123,6 +125,8 @@ namespace testspr {
testspr::algorithm_sort_heap_test();
testspr::algorithm_next_permutation_test();
testspr::algorithm_prev_permutation_test();
testspr::algorithm_copy_while_test();
testspr::algorithm_copy_until_test();
testspr::algorithm_clamp_range_copy_test();
testspr::algorithm_clamp_range_test();
testspr::algorithm_swap_element_test();