Skip to content

Commit aafd54d

Browse files
authored
Merge pull request #9 from zanliang4tz/n_merge_dw
Natural Merge Sort
2 parents c4a637f + 10c6c74 commit aafd54d

File tree

15 files changed

+721
-12
lines changed

15 files changed

+721
-12
lines changed

src/algorithms/controllers/collapseChunkPlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// below, otherwise hooks into what happens when blocks are expanded or
88
// contracted are not enabled.
99
const importsThis = ['quickSort', 'quickSortM3', 'msort_arr_td',
10-
'transitiveClosure', 'heapSort', 'msort_lista_td', "msort_arr_bup",];
10+
'transitiveClosure', 'heapSort', 'msort_lista_td', "msort_arr_bup", "msort_arr_nat"];
1111

1212
// eslint-disable-next-line import/no-cycle
1313
// See also accompanying mods/hooks in src/context/GlobalState.js and

src/algorithms/controllers/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export { default as quickSortM3 } from './quickSortM3';
66
export { default as msort_arr_td } from './msort_arr_td';
77
export { default as msort_lista_td } from './msort_lista_td';
88
export { default as msort_arr_bup } from './msort_arr_bup';
9+
export { default as msort_arr_nat } from './msort_arr_nat';
910
export { default as transitiveClosure } from './transitiveClosure';
1011
export { default as bruteForceStringSearch } from './bruteForceStringSearch';
1112
export { default as horspoolStringSearch } from './horspoolStringSearch';

0 commit comments

Comments
 (0)