Skip to content
This repository was archived by the owner on Mar 12, 2023. It is now read-only.

Latest commit

 

History

History
18 lines (13 loc) · 455 Bytes

File metadata and controls

18 lines (13 loc) · 455 Bytes

dict_db

  • Author: Jack Jiang
  • Date: Jul. 2019

A database implemented by Python dictionary

Performance Evaluation

Method Time Complexity
Create O(1)
Read O(1)
Update O(1)
Delete O(1)