432. 全 O(1) 数据结构
原文英文,约1100词,阅读约需4分钟。发表于: 。432. All O`one Data Structure Difficulty: Hard Topics: Hash Table, Linked List, Design, Doubly-Linked List Design a data structure to store the strings' count with the ability to return the...
设计一个数据结构来存储字符串计数,并能在O(1)时间内返回计数最小和最大的字符串。使用哈希表和双向链表实现,`inc`增加字符串计数,`dec`减少计数并在为零时移除,`getMaxKey`和`getMinKey`返回最大和最小计数的字符串。