Skip to content

StephanSong/py-data-structure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

py-data-structure

first sort method - insertion

use the following codes to test the sorting method

for the insertion-sort

import numpy as np

dat = np.random.randn(20)

print(dat) dat = insertion_sort(dat) print(dat)

for the merge sort

dat = np.random.randn(20) dat = merge_sort(dat,0,len(dat)-1)

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages