mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
algorithm, operation 全面修正
This commit is contained in:
parent
21f5d5191a
commit
5e67195030
244 changed files with 4764 additions and 831 deletions
50
sprout/algorithm/fit.hpp
Normal file
50
sprout/algorithm/fit.hpp
Normal file
|
@ -0,0 +1,50 @@
|
|||
#ifndef SPROUT_ALGORITHM_FIT_HPP
|
||||
#define SPROUT_ALGORITHM_FIT_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/algorithm/fit/copy.hpp>
|
||||
#include <sprout/algorithm/fit/copy_n.hpp>
|
||||
#include <sprout/algorithm/fit/copy_if.hpp>
|
||||
#include <sprout/algorithm/fit/copy_backward.hpp>
|
||||
#include <sprout/algorithm/fit/transform.hpp>
|
||||
#include <sprout/algorithm/fit/replace.hpp>
|
||||
#include <sprout/algorithm/fit/replace_if.hpp>
|
||||
#include <sprout/algorithm/fit/replace_copy.hpp>
|
||||
#include <sprout/algorithm/fit/replace_copy_if.hpp>
|
||||
#include <sprout/algorithm/fit/fill.hpp>
|
||||
#include <sprout/algorithm/fit/fill_n.hpp>
|
||||
#include <sprout/algorithm/fit/generate.hpp>
|
||||
#include <sprout/algorithm/fit/generate_n.hpp>
|
||||
#include <sprout/algorithm/fit/remove.hpp>
|
||||
#include <sprout/algorithm/fit/remove_if.hpp>
|
||||
#include <sprout/algorithm/fit/remove_copy.hpp>
|
||||
#include <sprout/algorithm/fit/remove_copy_if.hpp>
|
||||
#include <sprout/algorithm/fit/unique.hpp>
|
||||
#include <sprout/algorithm/fit/unique_copy.hpp>
|
||||
#include <sprout/algorithm/fit/reverse.hpp>
|
||||
#include <sprout/algorithm/fit/reverse_copy.hpp>
|
||||
#include <sprout/algorithm/fit/rotate.hpp>
|
||||
#include <sprout/algorithm/fit/rotate_copy.hpp>
|
||||
#include <sprout/algorithm/fit/partition.hpp>
|
||||
#include <sprout/algorithm/fit/partition_copy.hpp>
|
||||
#include <sprout/algorithm/fit/stable_partition.hpp>
|
||||
#include <sprout/algorithm/fit/stable_partition_copy.hpp>
|
||||
#include <sprout/algorithm/fit/sort.hpp>
|
||||
#include <sprout/algorithm/fit/stable_sort.hpp>
|
||||
#include <sprout/algorithm/fit/partial_sort.hpp>
|
||||
#include <sprout/algorithm/fit/nth_element.hpp>
|
||||
#include <sprout/algorithm/fit/merge.hpp>
|
||||
#include <sprout/algorithm/fit/inplace_merge.hpp>
|
||||
#include <sprout/algorithm/fit/set_union.hpp>
|
||||
#include <sprout/algorithm/fit/set_intersection.hpp>
|
||||
#include <sprout/algorithm/fit/set_difference.hpp>
|
||||
#include <sprout/algorithm/fit/set_symmetric_difference.hpp>
|
||||
#include <sprout/algorithm/fit/push_heap.hpp>
|
||||
#include <sprout/algorithm/fit/pop_heap.hpp>
|
||||
#include <sprout/algorithm/fit/make_heap.hpp>
|
||||
#include <sprout/algorithm/fit/make_partial_heap.hpp>
|
||||
#include <sprout/algorithm/fit/sort_heap.hpp>
|
||||
#include <sprout/algorithm/fit/swap_element.hpp>
|
||||
#include <sprout/algorithm/fit/swap_element_copy.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_ALGORITHM_FIT_HPP
|
Loading…
Add table
Add a link
Reference in a new issue