├── .gitignore ├── .idea ├── .name ├── c_data_structure.iml ├── codeStyles │ └── Project.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── big_int ├── big_int.c └── big_int.h ├── binary_tree ├── binary_tree.c ├── binary_tree.h ├── dll_queue.c ├── dll_queue.h ├── dll_stack.c ├── dll_stack.h └── elem_type_define.h ├── double_circular_linked_list ├── CMakeLists.txt ├── double_circular_linked_list.c ├── double_circular_linked_list.h └── test_double_circular_linked_list.c ├── double_linked_list ├── double_linked_list.c ├── double_linked_list.h └── test_double_linked_list.c ├── double_linked_list_queue ├── double_linked_list_queue.c ├── double_linked_list_queue.h └── test_double_linked_list_queue.c ├── double_linked_list_stack ├── double_linked_list_stack.c ├── double_linked_list_stack.h └── test_double_linked_list_stack.c ├── g_list ├── g_list.c ├── g_list.h ├── my_string.c ├── my_string.h ├── my_string_array.c ├── my_string_array.h └── test_g_list.c ├── linear_list ├── linear_list.c ├── linear_list.h └── test_linear_list.c ├── linear_list_stack ├── bracket_matching.c ├── evaluate_expression.c ├── labyrinth_analyze.c ├── line_edit.c ├── linear_list_stack.c ├── linear_list_stack.h ├── number_conversion.c ├── test_linear_list_stack.c └── tower_of_hanoi.c ├── matrix ├── matrix.c ├── matrix.h └── test_matrix.c ├── polynomial ├── polynomial.c ├── polynomial.h └── test_polynomial.c ├── single_circular_linked_list ├── single_circular_linked_list.c ├── single_circular_linked_list.h └── test_single_circular_linked_list.c ├── single_circular_linked_list_queue ├── single_circular_linked_list_queue.c ├── single_circular_linked_list_queue.h └── test_single_circular_linked_list_queue.c ├── single_linked_list ├── CMakeLists.txt ├── single_linked_list.c ├── single_linked_list.h └── test_single_linked_list.c ├── single_linked_list_queue ├── single_linked_list_queue.c ├── single_linked_list_queue.h └── test_single_linked_list_queue.c └── string ├── string.c ├── string.h ├── string_array.c ├── string_array.h ├── test_string.c └── test_string_array.c /.gitignore: -------------------------------------------------------------------------------- 1 | #folder and other 2 | *cmake-build-debug 3 | *uploading.cfg 4 | 5 | # Prerequisites 6 | *.d 7 | 8 | # Object files 9 | *.o 10 | *.ko 11 | *.obj 12 | *.elf 13 | 14 | # Linker output 15 | *.ilk 16 | *.map 17 | *.exp 18 | 19 | # Precompiled Headers 20 | *.gch 21 | *.pch 22 | 23 | # Libraries 24 | *.lib 25 | *.a 26 | *.la 27 | *.lo 28 | 29 | # Shared objects (inc. Windows DLLs) 30 | *.dll 31 | *.so 32 | *.so.* 33 | *.dylib 34 | 35 | # Executables 36 | *.exe 37 | *.out 38 | *.app 39 | *.i*86 40 | *.x86_64 41 | *.hex 42 | 43 | # Debug files 44 | *.dSYM/ 45 | *.su 46 | *.idb 47 | *.pdb 48 | 49 | # Kernel Module Compile Results 50 | *.mod* 51 | *.cmd 52 | .tmp_versions/ 53 | modules.order 54 | Module.symvers 55 | Mkfile.old 56 | dkms.conf 57 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | double_circular_linked_list -------------------------------------------------------------------------------- /.idea/c_data_structure.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 15 | 16 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | get_priornode 118 | 119 | 120 | 121 | 123 | 124 | 132 | 133 | 134 | 135 | 136 | true 137 | DEFINITION_ORDER 138 | 139 | 140 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 |