harrysimply / learn-data-structure-and-algorithm

学习计算机中的数据结构
0 stars 0 forks source link

哈希表 Hash Table / Hash Map #6

Open harrysimply opened 2 years ago

harrysimply commented 2 years ago

a structure that can map keys to values

harrysimply commented 2 years ago

567. Permutation in String

454. 4Sum II

525. Contiguous Array

使用一个hash table保存0和1的和,如果0则-1,如果1则加1,并记录index,最后看加的结果有没有在表里。