Metadata-Version: 2.1
Name: MyDataSort001
Version: 0.0.3
Summary: This is pip, which is a collection of functions used for data structures.
Home-page: https://github.com/YGC20
Download-URL: https://github.com/YGC20
Author: YGC20
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE


# MyDataSort001
## 이 PIP 파일은 데이터 구조의 정렬부분을 구현했습니다.
데이터 구조 정렬의 Bubble sort, Insertion sort, Selection sort, Merge sort, Quick sort, Shell sort, Heap sort를 구현했습니다.
사용 방법 :
'''python
from mySort import Sort

B = [4,24,8,2,34,2,1,9,2]
A=Sort.Quick(B)
print(A)
'''
