Skip to content

Commit

Permalink
Update lfu-cache.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 authored Aug 27, 2017
1 parent 53337ba commit 58c57fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C++/lfu-cache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class LFUCache {
public:
LFUCache(int capacity) : capa_(capacity), size_(0) {
LFUCache(int capacity) : capa_(capacity), size_(0), min_freq_(0) {
}

int get(int key) {
Expand Down

0 comments on commit 58c57fc

Please sign in to comment.