Options
All
  • Public
  • Public/Protected
  • All
Menu

@fujia/ant

ant logo

@fujia/ant

A powerful library of typescript-based algorithmic tools.

English | 简体中文

Installation

npm i @fujia/ant

# or use yarn
yarn add @fujia/ant

Usage

How to use? Simply to import useful functions from the library, as follows:

import { quickSort } from '@fujia/ant';

const data = [3, 6, 1, 9, 16, 5, 2, 7, 4];

quickSort(data); // return: [1, 2, 3, 4, 5, 6, 7, 9, 16]

Documentation

Learn more about using @fujia/ant:

License

@fujia/ant is MIT licensed.

References

  1. 《Re-learning Data structures and Algorithms》 - https://kaiwu.lagou.com/course/courseInfo.htm?courseId=185

Generated using TypeDoc