From 474f4315f7d9337b3d517e3eb77d231d8d54b3bb Mon Sep 17 00:00:00 2001 From: Revone Date: Fri, 22 Sep 2023 10:45:56 +0800 Subject: [PATCH] [badges] coverage badges removed --- README.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e4902a1..cba3d06 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,3 @@ -# What - ![License](https://img.shields.io/badge/License-MIT-blue.svg) ![Language](https://img.shields.io/github/languages/top/zrwusa/data-structure-typed) ![GitHub release (latest by date)](https://img.shields.io/github/v/release/zrwusa/data-structure-typed) @@ -12,6 +10,7 @@ [//]: # (![TypeDoc](https://img.shields.io/github/package-json/dependency-version/zrwusa/data-structure-typed/dev/typedoc)) [//]: # (![Total Downloads](https://img.shields.io/github/downloads/zrwusa/data-structure-typed/total)) + ## Brief Data Structures of Javascript & TypeScript. @@ -20,7 +19,6 @@ DFS(Depth-First Search), DFSIterative, BFS(Breadth-First Search), morris, Bellman-Ford Algorithm, Dijkstra's Algorithm, Floyd-Warshall Algorithm, Tarjan's Algorithm. -# How ## install ### npm ```bash @@ -491,12 +489,13 @@ import {UndirectedGraph} from 'data-structure-typed'; [//]: # () -![Statements](https://img.shields.io/badge/statements-55.31%25-red.svg?style=flat) -![Branches](https://img.shields.io/badge/branches-47.04%25-red.svg?style=flat) -![Functions](https://img.shields.io/badge/functions-48.29%25-red.svg?style=flat) -![Lines](https://img.shields.io/badge/lines-56.92%25-red.svg?style=flat) +[//]: # (![Statements](https://img.shields.io/badge/statements-55.31%25-red.svg?style=flat)) -# Why +[//]: # (![Branches](https://img.shields.io/badge/branches-47.04%25-red.svg?style=flat)) + +[//]: # (![Functions](https://img.shields.io/badge/functions-48.29%25-red.svg?style=flat)) + +[//]: # (![Lines](https://img.shields.io/badge/lines-56.92%25-red.svg?style=flat)) ## Code design By strictly adhering to object-oriented design (BinaryTree -> BST -> AVLTree -> TreeMultiset), you can seamlessly inherit the existing data structures to implement the customized ones you need. Object-oriented design stands as the optimal approach to data structure design.