Metadata-Version: 2.1
Name: TsingPig_Lab
Version: 0.1.3
Summary: TsingPig_Lab is a package for algorithm.
Home-page: https://gitlab.com/tsingpig-code/tsingpig_lab
Author: TsingPig
Author-email: 1114196607@qq.com
License: UNKNOWN
Description: # TsingPig - Lab
        ## 1. Introduction
        This is a python package for simple algorithms and data structures which is developed by **tsingpig**.
        
        **Version: v0.1.3**
        
        Author: TsingPig
        
        Repo: [TsingPig / tsingpig_lab 路 GitLab](https://gitlab.com/tsingpig-code/tsingpig_lab)
        
        You can connect me by email: 1114196607@qq.com
        
        Thanks for your support!
        
        
        
        ## 2. Functions
        ### 2.1. DataStructures
        
        **Sparse Table (ST)**
        
        A data structure ST table (Sparse Table) that supports interval contribution problem queries.
        
        ``` python
        from tsingpig_lab import DataStructures
        st = DataStructures.ST([1, 2, 3])
        print(st.qry(0, 2))  # 3
        ```
        
        
        
        ### 2.2. Algorithms
        
        #### 2.2.1 BaseConverter 
        
        ```python 
        
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
