2 Star 2 Fork 0

JackMa007 / cplusplus-_Implementation_Of_Introduction_to_Algorithms

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.cpp 4.44 KB
一键复制 编辑 原始数据 按行查看 历史
huaxz 提交于 2016-04-17 13:39 . add string-match-algorithms
/*
* Copyright 2016- huaxz <huaxz1986@163.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Author: huaxz1986@163.com (huaxz)
*/
#include"src/google_test/gtest.h"
#include"src/sort_algorithms/insert_sort/insertsort_test.h"
#include"src/sort_algorithms/quick_sort/quicksort_test.h"
#include"src/sort_algorithms/merge_sort/mergesort_test.h"
#include"src/sort_algorithms/heap_sort/heapsort_test.h"
#include"src/sort_algorithms/count_sort/countsort_test.h"
#include"src/sort_algorithms/radix_sort/radixsort_test.h"
#include"src/sort_algorithms/bucket_sort/bucketsort_test.h"
#include"src/select_algorithms/randomized_select/randomizedselect_test.h"
#include"src/select_algorithms/good_select/goodselect_test.h"
#include"src/dynamic_programming_algorithms/lcs/longest_common_subsequence_test.h"
#include"src/tree_algorithms/binarytreenode/binarytreenode_test.h"
#include"src/tree_algorithms/binarytree/binarytree_test.h"
#include"src/tree_algorithms/searchtree/searchtree_test.h"
#include"src/queue_algorithms/min_queue/minqueue_test.h"
#include"src/graph_algorithms/basic_graph/graph_representation/graph_vertex/vertex_test.h"
#include"src/graph_algorithms/basic_graph/graph_representation/graph_vertex/bfs_vertex_test.h"
#include"src/graph_algorithms/basic_graph/graph_representation/graph_vertex/dfs_vertex_test.h"
#include"src/graph_algorithms/basic_graph/graph_representation/graph_vertex/set_vertex_test.h"
#include"src/graph_algorithms/basic_graph/graph_representation/graph_vertex/vertexp_test.h"
#include"src/graph_algorithms/basic_graph/graph_representation/graph_vertex/flow_vertex_test.h"
#include"src/graph_algorithms/basic_graph/graph_representation/graph_vertex/front_flow_vertex_test.h"
#include"src/graph_algorithms/basic_graph/graph_representation/graph_edge/edge_test.h"
#include"src/graph_algorithms/basic_graph/graph_representation/matrix_graph/matrixgraph_test.h"
#include"src/graph_algorithms/basic_graph/graph_representation/adjlist_graph/adjlistgraph_test.h"
#include"src/graph_algorithms/basic_graph/graph_representation/graph/graph_test.h"
#include"src/graph_algorithms/basic_graph/graph_bfs/bfs_test.h"
#include"src/graph_algorithms/basic_graph/graph_dfs/dfs_test.h"
#include"src/graph_algorithms/basic_graph/topology_sort/topologysort_test.h"
#include"src/graph_algorithms/basic_graph/strong_connected_component/strongconnectedcomponent_test.h"
#include"src/graph_algorithms/basic_graph/connected_component/connectedcomponent_test.h"
#include"src/queue_algorithms/min_queue/minqueue_test.h"
#include"src/set_algorithms/disjoint_set/disjointset_test.h"
#include"src/graph_algorithms/minimum_spanning_tree/prim/prim_test.h"
#include"src/graph_algorithms/minimum_spanning_tree/kruskal/kruskal_test.h"
#include"src/graph_algorithms/single_source_shortest_path/bellman_ford/bellmanford_test.h"
#include"src/graph_algorithms/single_source_shortest_path/dag_shortest_path/dagshortpath_test.h"
#include"src/graph_algorithms/single_source_shortest_path/dijkstra/dijkstra_test.h"
#include"src/graph_algorithms/all_node_pair_shortest_path/matrix_shortest_path/matrix_shortest_path_test.h"
#include"src/graph_algorithms/all_node_pair_shortest_path/floyd_warshall/floyd_warshall_test.h"
#include"src/graph_algorithms/all_node_pair_shortest_path/johnson/johnson_test.h"
#include"src/graph_algorithms/max_flow/ford_fulkerson/fordfulkerson_test.h"
#include"src/graph_algorithms/max_flow/generic_push_relabel/genericpushrelabel_test.h"
#include"src/graph_algorithms/max_flow/relabel_to_front/relabeltofront_test.h"
#include"src/string_matching_algorithms/regular_match/match_test.h"
#include"src/string_matching_algorithms/rabin_karp_match/rabinkarpmatch_test.h"
#include"src/string_matching_algorithms/finite_automaton_match/finiteautomatonmatch_test.h"
#include"src/string_matching_algorithms/kmp_match/kmp_test.h"
int main(int argc,char** argv)
{
::testing::InitGoogleTest(&argc,argv);
return RUN_ALL_TESTS();
}
C++
1
https://gitee.com/Jack_Ma007/cplusplus-_Implementation_Of_Introduction_to_Algorithms.git
git@gitee.com:Jack_Ma007/cplusplus-_Implementation_Of_Introduction_to_Algorithms.git
Jack_Ma007
cplusplus-_Implementation_Of_Introduction_to_Algorithms
cplusplus-_Implementation_Of_Introduction_to_Algorithms
master

搜索帮助