├── README.md ├── april ├── 1 ├── 2 ├── 3 ├── 4 ├── 1.c ├── 2.c ├── 3.c └── 4.c ├── array ├── 1081 ├── 1095 ├── 1142 ├── 1153 ├── 1262 ├── 1337 ├── 1342 ├── 1470 ├── 1476 ├── 1081.c ├── 1095.c ├── 1119.c ├── 1142.c ├── 1153.c ├── 1262.c ├── 1337.c ├── 1342.c ├── 1376.c ├── 1470.c ├── 1476.c ├── find_halfnum.c ├── first_num.c ├── gas ├── gas.c ├── grading.c ├── knum.c ├── list.c ├── max_num.c ├── merge_list.c ├── min_stack.c ├── num ├── num.c ├── one_num ├── one_num.c ├── poker.c ├── sequence_sum.c ├── shuffle ├── shuffle.c ├── stack_queue.c ├── straight.c ├── sum_s.c ├── two_unique.c └── ugly_num.c ├── disjoint_set ├── 1035 ├── 1035.c ├── circuit.c ├── connect.c ├── connected_graph.c ├── freckles.c ├── gang.c ├── jungle.c ├── kruskal_connect.c ├── kruskal_oldconnect.c ├── lonely_land.c ├── max_children.c ├── more.c ├── oldconnect.c ├── prim_connect.c ├── tables.c └── unblock.c ├── dynamic_programing ├── 1030 ├── 1152 ├── 1160 ├── 1209 ├── 1454 ├── 1455 ├── 1549 ├── 1030.c ├── 1152.c ├── 1160.c ├── 1209.c ├── 1454.c ├── 1455.c ├── 1530.c ├── 1549.c ├── bone_collector ├── bone_collector.c ├── combine.c ├── dice.c ├── error_formula.c ├── gather_herb.c ├── guess_game.c ├── gym_queue.c ├── lcs ├── lcs.c ├── lis.c ├── lms.c ├── max_count.c ├── max_lcs.c ├── max_lis.c ├── max_matrix.c ├── max_vector.c ├── min_num.c ├── move_house.c ├── proxy_server.c ├── queue.c ├── ship_load.c └── vfor_vendetta.c ├── graph ├── 1030 ├── 1091 ├── 1140 ├── 1249 ├── 1341 ├── 1030.c ├── 1091.c ├── 1140.c ├── 1249.c ├── 1341.c ├── 1461.c ├── bfs_2013 ├── bfs_2013.c ├── bfs_escape.c ├── cooler.c ├── dfs_primering ├── dfs_primering.c ├── robot_motion ├── robot_motion.c └── short_path.c ├── greedy └── kenan.c ├── hash ├── bitmap.c ├── hold_seat.c ├── num_hash.c └── study_hash.c ├── july ├── connect_arr.c ├── firend_circle ├── firend_circle.c ├── max_arr ├── max_arr.c ├── reverse_word ├── reverse_word.c ├── sub_symmetrical └── sub_symmetrical.c ├── link ├── reverse └── reverse.c ├── math ├── 1087 ├── 1104 ├── 1207 ├── 1087.c ├── 1104.c └── 1207.c ├── matrix ├── find_num.c ├── min_matrix.c └── multiply.c ├── may ├── first.c ├── four.c ├── second.c ├── test.c └── third.c ├── number_theory ├── 1145 ├── 1373 ├── 1478 ├── 1491 ├── 1145.c ├── 1373.c ├── 1478.c ├── 1491.c ├── array_ring.c ├── diedai.c ├── fibnocci.c ├── jobdu.c ├── jump_step.c ├── list_ring.c ├── max_number.c ├── noplus.c ├── nosum.c ├── number.c ├── ring.c ├── skew.c ├── sqrt └── sqrt.c ├── recursion ├── eigthqueue.c ├── hanoiIII.c ├── hanoi_num.c ├── nqueue.c ├── permutation.c └── primering.c ├── september_1 ├── 1 ├── 2 ├── 3 ├── 4 ├── 5 ├── 1.c ├── 2.c ├── 3.c ├── 4.c └── 5.c ├── socket ├── client ├── client.c ├── server └── server.c ├── sort ├── 1007 ├── 1005.c ├── 1007.c ├── bucket ├── bucket.c ├── insert.c ├── merge.c ├── monkey.c ├── quick ├── quick.c └── reverse_num.c ├── string ├── 1143 ├── 1143.c ├── atoi.c ├── child_str.c ├── cover_segment ├── cover_segment.c ├── helloworld.c ├── is_symmetrical.c ├── josephus_circle.c ├── kreverse ├── kreverse.c ├── math_circle.c ├── sub_symmetrical.c ├── switchip └── switchip.c ├── study ├── insert_dlist.c ├── insert_list.c └── ring.c └── tree ├── 1509.c ├── bfs_btree.c ├── binary_search_tree.c ├── brotherword ├── brotherword.c ├── bt_sum.c ├── btree_tolink.c ├── child_tree.c ├── depth_tree.c ├── judge_mirror ├── judge_mirror.c ├── mirror_btree.c ├── phone_list ├── phone_list.c ├── rebuild_tree.c ├── repository ├── repository.c ├── study_btree.c ├── trie └── trie.c /README.md: -------------------------------------------------------------------------------- 1 | ACM 2 | === 3 | 4 | 九度oj的练习题目 -------------------------------------------------------------------------------- /april/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/april/1 -------------------------------------------------------------------------------- /april/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/april/1.c -------------------------------------------------------------------------------- /april/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/april/2 -------------------------------------------------------------------------------- /april/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/april/2.c -------------------------------------------------------------------------------- /april/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/april/3 -------------------------------------------------------------------------------- /april/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/april/3.c -------------------------------------------------------------------------------- /april/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/april/4 -------------------------------------------------------------------------------- /april/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/april/4.c -------------------------------------------------------------------------------- /array/1081: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1081 -------------------------------------------------------------------------------- /array/1081.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1081.c -------------------------------------------------------------------------------- /array/1095: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1095 -------------------------------------------------------------------------------- /array/1095.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1095.c -------------------------------------------------------------------------------- /array/1119.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1119.c -------------------------------------------------------------------------------- /array/1142: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1142 -------------------------------------------------------------------------------- /array/1142.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1142.c -------------------------------------------------------------------------------- /array/1153: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1153 -------------------------------------------------------------------------------- /array/1153.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1153.c -------------------------------------------------------------------------------- /array/1262: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1262 -------------------------------------------------------------------------------- /array/1262.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1262.c -------------------------------------------------------------------------------- /array/1337: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1337 -------------------------------------------------------------------------------- /array/1337.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1337.c -------------------------------------------------------------------------------- /array/1342: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1342 -------------------------------------------------------------------------------- /array/1342.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1342.c -------------------------------------------------------------------------------- /array/1376.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1376.c -------------------------------------------------------------------------------- /array/1470: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1470 -------------------------------------------------------------------------------- /array/1470.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1470.c -------------------------------------------------------------------------------- /array/1476: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1476 -------------------------------------------------------------------------------- /array/1476.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/1476.c -------------------------------------------------------------------------------- /array/find_halfnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/find_halfnum.c -------------------------------------------------------------------------------- /array/first_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/first_num.c -------------------------------------------------------------------------------- /array/gas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/gas -------------------------------------------------------------------------------- /array/gas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/gas.c -------------------------------------------------------------------------------- /array/grading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/grading.c -------------------------------------------------------------------------------- /array/knum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/knum.c -------------------------------------------------------------------------------- /array/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/list.c -------------------------------------------------------------------------------- /array/max_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/max_num.c -------------------------------------------------------------------------------- /array/merge_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/merge_list.c -------------------------------------------------------------------------------- /array/min_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/min_stack.c -------------------------------------------------------------------------------- /array/num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/num -------------------------------------------------------------------------------- /array/num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/num.c -------------------------------------------------------------------------------- /array/one_num: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/one_num -------------------------------------------------------------------------------- /array/one_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/one_num.c -------------------------------------------------------------------------------- /array/poker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/poker.c -------------------------------------------------------------------------------- /array/sequence_sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/sequence_sum.c -------------------------------------------------------------------------------- /array/shuffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/shuffle -------------------------------------------------------------------------------- /array/shuffle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/shuffle.c -------------------------------------------------------------------------------- /array/stack_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/stack_queue.c -------------------------------------------------------------------------------- /array/straight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/straight.c -------------------------------------------------------------------------------- /array/sum_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/sum_s.c -------------------------------------------------------------------------------- /array/two_unique.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/two_unique.c -------------------------------------------------------------------------------- /array/ugly_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/array/ugly_num.c -------------------------------------------------------------------------------- /disjoint_set/1035: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/1035 -------------------------------------------------------------------------------- /disjoint_set/1035.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/1035.c -------------------------------------------------------------------------------- /disjoint_set/circuit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/circuit.c -------------------------------------------------------------------------------- /disjoint_set/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/connect.c -------------------------------------------------------------------------------- /disjoint_set/connected_graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/connected_graph.c -------------------------------------------------------------------------------- /disjoint_set/freckles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/freckles.c -------------------------------------------------------------------------------- /disjoint_set/gang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/gang.c -------------------------------------------------------------------------------- /disjoint_set/jungle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/jungle.c -------------------------------------------------------------------------------- /disjoint_set/kruskal_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/kruskal_connect.c -------------------------------------------------------------------------------- /disjoint_set/kruskal_oldconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/kruskal_oldconnect.c -------------------------------------------------------------------------------- /disjoint_set/lonely_land.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/lonely_land.c -------------------------------------------------------------------------------- /disjoint_set/max_children.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/max_children.c -------------------------------------------------------------------------------- /disjoint_set/more.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/more.c -------------------------------------------------------------------------------- /disjoint_set/oldconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/oldconnect.c -------------------------------------------------------------------------------- /disjoint_set/prim_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/prim_connect.c -------------------------------------------------------------------------------- /disjoint_set/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/tables.c -------------------------------------------------------------------------------- /disjoint_set/unblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/disjoint_set/unblock.c -------------------------------------------------------------------------------- /dynamic_programing/1030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1030 -------------------------------------------------------------------------------- /dynamic_programing/1030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1030.c -------------------------------------------------------------------------------- /dynamic_programing/1152: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1152 -------------------------------------------------------------------------------- /dynamic_programing/1152.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1152.c -------------------------------------------------------------------------------- /dynamic_programing/1160: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1160 -------------------------------------------------------------------------------- /dynamic_programing/1160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1160.c -------------------------------------------------------------------------------- /dynamic_programing/1209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1209 -------------------------------------------------------------------------------- /dynamic_programing/1209.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1209.c -------------------------------------------------------------------------------- /dynamic_programing/1454: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1454 -------------------------------------------------------------------------------- /dynamic_programing/1454.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1454.c -------------------------------------------------------------------------------- /dynamic_programing/1455: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1455 -------------------------------------------------------------------------------- /dynamic_programing/1455.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1455.c -------------------------------------------------------------------------------- /dynamic_programing/1530.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1530.c -------------------------------------------------------------------------------- /dynamic_programing/1549: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1549 -------------------------------------------------------------------------------- /dynamic_programing/1549.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/1549.c -------------------------------------------------------------------------------- /dynamic_programing/bone_collector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/bone_collector -------------------------------------------------------------------------------- /dynamic_programing/bone_collector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/bone_collector.c -------------------------------------------------------------------------------- /dynamic_programing/combine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/combine.c -------------------------------------------------------------------------------- /dynamic_programing/dice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/dice.c -------------------------------------------------------------------------------- /dynamic_programing/error_formula.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/error_formula.c -------------------------------------------------------------------------------- /dynamic_programing/gather_herb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/gather_herb.c -------------------------------------------------------------------------------- /dynamic_programing/guess_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/guess_game.c -------------------------------------------------------------------------------- /dynamic_programing/gym_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/gym_queue.c -------------------------------------------------------------------------------- /dynamic_programing/lcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/lcs -------------------------------------------------------------------------------- /dynamic_programing/lcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/lcs.c -------------------------------------------------------------------------------- /dynamic_programing/lis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/lis.c -------------------------------------------------------------------------------- /dynamic_programing/lms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/lms.c -------------------------------------------------------------------------------- /dynamic_programing/max_count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/max_count.c -------------------------------------------------------------------------------- /dynamic_programing/max_lcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/max_lcs.c -------------------------------------------------------------------------------- /dynamic_programing/max_lis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/max_lis.c -------------------------------------------------------------------------------- /dynamic_programing/max_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/max_matrix.c -------------------------------------------------------------------------------- /dynamic_programing/max_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/max_vector.c -------------------------------------------------------------------------------- /dynamic_programing/min_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/min_num.c -------------------------------------------------------------------------------- /dynamic_programing/move_house.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/move_house.c -------------------------------------------------------------------------------- /dynamic_programing/proxy_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/proxy_server.c -------------------------------------------------------------------------------- /dynamic_programing/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/queue.c -------------------------------------------------------------------------------- /dynamic_programing/ship_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/ship_load.c -------------------------------------------------------------------------------- /dynamic_programing/vfor_vendetta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/dynamic_programing/vfor_vendetta.c -------------------------------------------------------------------------------- /graph/1030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/1030 -------------------------------------------------------------------------------- /graph/1030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/1030.c -------------------------------------------------------------------------------- /graph/1091: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/1091 -------------------------------------------------------------------------------- /graph/1091.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/1091.c -------------------------------------------------------------------------------- /graph/1140: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/1140 -------------------------------------------------------------------------------- /graph/1140.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/1140.c -------------------------------------------------------------------------------- /graph/1249: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/1249 -------------------------------------------------------------------------------- /graph/1249.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/1249.c -------------------------------------------------------------------------------- /graph/1341: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/1341 -------------------------------------------------------------------------------- /graph/1341.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/1341.c -------------------------------------------------------------------------------- /graph/1461.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/1461.c -------------------------------------------------------------------------------- /graph/bfs_2013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/bfs_2013 -------------------------------------------------------------------------------- /graph/bfs_2013.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/bfs_2013.c -------------------------------------------------------------------------------- /graph/bfs_escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/bfs_escape.c -------------------------------------------------------------------------------- /graph/cooler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/cooler.c -------------------------------------------------------------------------------- /graph/dfs_primering: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/dfs_primering -------------------------------------------------------------------------------- /graph/dfs_primering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/dfs_primering.c -------------------------------------------------------------------------------- /graph/robot_motion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/robot_motion -------------------------------------------------------------------------------- /graph/robot_motion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/robot_motion.c -------------------------------------------------------------------------------- /graph/short_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/graph/short_path.c -------------------------------------------------------------------------------- /greedy/kenan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/greedy/kenan.c -------------------------------------------------------------------------------- /hash/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/hash/bitmap.c -------------------------------------------------------------------------------- /hash/hold_seat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/hash/hold_seat.c -------------------------------------------------------------------------------- /hash/num_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/hash/num_hash.c -------------------------------------------------------------------------------- /hash/study_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/hash/study_hash.c -------------------------------------------------------------------------------- /july/connect_arr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/july/connect_arr.c -------------------------------------------------------------------------------- /july/firend_circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/july/firend_circle -------------------------------------------------------------------------------- /july/firend_circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/july/firend_circle.c -------------------------------------------------------------------------------- /july/max_arr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/july/max_arr -------------------------------------------------------------------------------- /july/max_arr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/july/max_arr.c -------------------------------------------------------------------------------- /july/reverse_word: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/july/reverse_word -------------------------------------------------------------------------------- /july/reverse_word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/july/reverse_word.c -------------------------------------------------------------------------------- /july/sub_symmetrical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/july/sub_symmetrical -------------------------------------------------------------------------------- /july/sub_symmetrical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/july/sub_symmetrical.c -------------------------------------------------------------------------------- /link/reverse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/link/reverse -------------------------------------------------------------------------------- /link/reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/link/reverse.c -------------------------------------------------------------------------------- /math/1087: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/math/1087 -------------------------------------------------------------------------------- /math/1087.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/math/1087.c -------------------------------------------------------------------------------- /math/1104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/math/1104 -------------------------------------------------------------------------------- /math/1104.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/math/1104.c -------------------------------------------------------------------------------- /math/1207: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/math/1207 -------------------------------------------------------------------------------- /math/1207.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/math/1207.c -------------------------------------------------------------------------------- /matrix/find_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/matrix/find_num.c -------------------------------------------------------------------------------- /matrix/min_matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/matrix/min_matrix.c -------------------------------------------------------------------------------- /matrix/multiply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/matrix/multiply.c -------------------------------------------------------------------------------- /may/first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/may/first.c -------------------------------------------------------------------------------- /may/four.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/may/four.c -------------------------------------------------------------------------------- /may/second.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/may/second.c -------------------------------------------------------------------------------- /may/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/may/test.c -------------------------------------------------------------------------------- /may/third.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/may/third.c -------------------------------------------------------------------------------- /number_theory/1145: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/1145 -------------------------------------------------------------------------------- /number_theory/1145.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/1145.c -------------------------------------------------------------------------------- /number_theory/1373: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/1373 -------------------------------------------------------------------------------- /number_theory/1373.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/1373.c -------------------------------------------------------------------------------- /number_theory/1478: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/1478 -------------------------------------------------------------------------------- /number_theory/1478.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/1478.c -------------------------------------------------------------------------------- /number_theory/1491: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/1491 -------------------------------------------------------------------------------- /number_theory/1491.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/1491.c -------------------------------------------------------------------------------- /number_theory/array_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/array_ring.c -------------------------------------------------------------------------------- /number_theory/diedai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/diedai.c -------------------------------------------------------------------------------- /number_theory/fibnocci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/fibnocci.c -------------------------------------------------------------------------------- /number_theory/jobdu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/jobdu.c -------------------------------------------------------------------------------- /number_theory/jump_step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/jump_step.c -------------------------------------------------------------------------------- /number_theory/list_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/list_ring.c -------------------------------------------------------------------------------- /number_theory/max_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/max_number.c -------------------------------------------------------------------------------- /number_theory/noplus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/noplus.c -------------------------------------------------------------------------------- /number_theory/nosum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/nosum.c -------------------------------------------------------------------------------- /number_theory/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/number.c -------------------------------------------------------------------------------- /number_theory/ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/ring.c -------------------------------------------------------------------------------- /number_theory/skew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/skew.c -------------------------------------------------------------------------------- /number_theory/sqrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/sqrt -------------------------------------------------------------------------------- /number_theory/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/number_theory/sqrt.c -------------------------------------------------------------------------------- /recursion/eigthqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/recursion/eigthqueue.c -------------------------------------------------------------------------------- /recursion/hanoiIII.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/recursion/hanoiIII.c -------------------------------------------------------------------------------- /recursion/hanoi_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/recursion/hanoi_num.c -------------------------------------------------------------------------------- /recursion/nqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/recursion/nqueue.c -------------------------------------------------------------------------------- /recursion/permutation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/recursion/permutation.c -------------------------------------------------------------------------------- /recursion/primering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/recursion/primering.c -------------------------------------------------------------------------------- /september_1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/september_1/1 -------------------------------------------------------------------------------- /september_1/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/september_1/1.c -------------------------------------------------------------------------------- /september_1/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/september_1/2 -------------------------------------------------------------------------------- /september_1/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/september_1/2.c -------------------------------------------------------------------------------- /september_1/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/september_1/3 -------------------------------------------------------------------------------- /september_1/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/september_1/3.c -------------------------------------------------------------------------------- /september_1/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/september_1/4 -------------------------------------------------------------------------------- /september_1/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/september_1/4.c -------------------------------------------------------------------------------- /september_1/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/september_1/5 -------------------------------------------------------------------------------- /september_1/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/september_1/5.c -------------------------------------------------------------------------------- /socket/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/socket/client -------------------------------------------------------------------------------- /socket/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/socket/client.c -------------------------------------------------------------------------------- /socket/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/socket/server -------------------------------------------------------------------------------- /socket/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/socket/server.c -------------------------------------------------------------------------------- /sort/1005.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/sort/1005.c -------------------------------------------------------------------------------- /sort/1007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/sort/1007 -------------------------------------------------------------------------------- /sort/1007.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/sort/1007.c -------------------------------------------------------------------------------- /sort/bucket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/sort/bucket -------------------------------------------------------------------------------- /sort/bucket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/sort/bucket.c -------------------------------------------------------------------------------- /sort/insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/sort/insert.c -------------------------------------------------------------------------------- /sort/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/sort/merge.c -------------------------------------------------------------------------------- /sort/monkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/sort/monkey.c -------------------------------------------------------------------------------- /sort/quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/sort/quick -------------------------------------------------------------------------------- /sort/quick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/sort/quick.c -------------------------------------------------------------------------------- /sort/reverse_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/sort/reverse_num.c -------------------------------------------------------------------------------- /string/1143: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/1143 -------------------------------------------------------------------------------- /string/1143.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/1143.c -------------------------------------------------------------------------------- /string/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/atoi.c -------------------------------------------------------------------------------- /string/child_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/child_str.c -------------------------------------------------------------------------------- /string/cover_segment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/cover_segment -------------------------------------------------------------------------------- /string/cover_segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/cover_segment.c -------------------------------------------------------------------------------- /string/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/helloworld.c -------------------------------------------------------------------------------- /string/is_symmetrical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/is_symmetrical.c -------------------------------------------------------------------------------- /string/josephus_circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/josephus_circle.c -------------------------------------------------------------------------------- /string/kreverse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/kreverse -------------------------------------------------------------------------------- /string/kreverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/kreverse.c -------------------------------------------------------------------------------- /string/math_circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/math_circle.c -------------------------------------------------------------------------------- /string/sub_symmetrical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/sub_symmetrical.c -------------------------------------------------------------------------------- /string/switchip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/switchip -------------------------------------------------------------------------------- /string/switchip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/string/switchip.c -------------------------------------------------------------------------------- /study/insert_dlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/study/insert_dlist.c -------------------------------------------------------------------------------- /study/insert_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/study/insert_list.c -------------------------------------------------------------------------------- /study/ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/study/ring.c -------------------------------------------------------------------------------- /tree/1509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/1509.c -------------------------------------------------------------------------------- /tree/bfs_btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/bfs_btree.c -------------------------------------------------------------------------------- /tree/binary_search_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/binary_search_tree.c -------------------------------------------------------------------------------- /tree/brotherword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/brotherword -------------------------------------------------------------------------------- /tree/brotherword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/brotherword.c -------------------------------------------------------------------------------- /tree/bt_sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/bt_sum.c -------------------------------------------------------------------------------- /tree/btree_tolink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/btree_tolink.c -------------------------------------------------------------------------------- /tree/child_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/child_tree.c -------------------------------------------------------------------------------- /tree/depth_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/depth_tree.c -------------------------------------------------------------------------------- /tree/judge_mirror: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/judge_mirror -------------------------------------------------------------------------------- /tree/judge_mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/judge_mirror.c -------------------------------------------------------------------------------- /tree/mirror_btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/mirror_btree.c -------------------------------------------------------------------------------- /tree/phone_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/phone_list -------------------------------------------------------------------------------- /tree/phone_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/phone_list.c -------------------------------------------------------------------------------- /tree/rebuild_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/rebuild_tree.c -------------------------------------------------------------------------------- /tree/repository: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/repository -------------------------------------------------------------------------------- /tree/repository.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/repository.c -------------------------------------------------------------------------------- /tree/study_btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/study_btree.c -------------------------------------------------------------------------------- /tree/trie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/trie -------------------------------------------------------------------------------- /tree/trie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhengyi/ACM/HEAD/tree/trie.c --------------------------------------------------------------------------------