哈希表与布隆过滤器

哈希表思想与布隆过滤器

哈希操作:一种高维空间到低维空间的映射
哈希冲突:两个元素可能被映射到同一个位置上去
冲突处理方法:

  1. 开放定址法
    通过已有的下标进行再计算 ind1->ind2
class HashTable {
public:
	HashTable(int n = 100) : flag(n), data(n), cnt(0){}
	void insert(string s){
		int ind = hash_func(s) % data.size(); // 计算哈希值
		recalc_ind(ind, s); // 冲突处理
		if(flag[index] == false){
			data[ind] = s;
			flag[ind] = true;
			cnt += 1;
			// 装填因子
			// 存储元素个数/哈希总容量 当达到 0.75 的时候就应该扩容了
			if(cnt * 100 > data.size() * 75){
				expand();
			}
		}
		return;
	}
	
	bool find(string s){
		int ind = hash_func(s) % data.size();
		recalc_ind(ind, s); 
		return flag[ind];
	}
private:
	int cnt;
	vector<string> data;
	vector<bool> flag;
	
	int hash_func(string &s){
		int seed = 131, hash = 0;
		for(ing i = 0; s[i]; i++){
			hash = hash * seed + s[i];
		}
		return hash & 0x7fffffff;
	}

	void expand(){
		int n = data.size() * 2;
		HashTable h(n);
		for(int i = 0; i < data.size(); i++){
			if(flag[i] == false) continue;
			h.insert(data[i]);
		}
		*this = h;
		return;
	}
	
	void recalc_ind(int &ind, string &s){
		int t = 1;
		while(flag[ind] && data[ind] != s){
			ind += t * t;
			t += 1;
			ind %= data.size();
		}
		return;
	}
};
  1. 再哈希法
    设计不止一个哈希函数,但是治标不治本,需要配合其他冲突处理方式做兜底方案
  2. 建立公共溢出区
    所有发生冲突的数据都放入溢出缓冲区内,用另外的数据结构进行维护,如红黑树
class HashTable {
public:
	HashTable(int n = 100) : flag(n), data(n), cnt(0){}
	void insert(string s){
		int ind = hash_func(s) % data.size(); // 计算哈希值
		recalc_ind(ind, s); // 冲突处理
		if(flag[index] == false){
			data[ind] = s;
			flag[ind] = true;
			cnt += 1;
			// 装填因子
			// 存储元素个数/哈希总容量 当达到 0.75 的时候就应该扩容了
			if(cnt * 100 > data.size() * 75){
				expand();
			}
		}else if(data[ind != s]){
			buff.insert(s);
		}
		return;
	}
	
	bool find(string s){
		int ind = hash_func(s) % data.size();
		recalc_ind(ind, s); 
		if(flag[ind] == false) return false;
		if(data[ind] == s) return true;
		if(buff.find(s) != buff.end())
	}
private:
	int cnt;
	vector<string> data;
	vector<bool> flag;
	set<string> buff;
	
	int hash_func(string &s){
		int seed = 131, hash = 0;
		for(ing i = 0; s[i]; i++){
			hash = hash * seed + s[i];
		}
		return hash & 0x7fffffff;
	}

	void expand(){
		int n = data.size() * 2;
		HashTable h(n);
		for(int i = 0; i < data.size(); i++){
			if(flag[i] == false) continue;
			h.insert(data[i]);
		}
		for(auto x : buff){
			h.insert(x);
		}
		*this = h;
		return;
	}
	
	void recalc_ind(int &ind, string &s){
		return;
	}
};
  1. 链式地址法(拉链法) 推荐
    哈希表每个位置存储的是一个链表的头节点
class Node {
public:
	Node(string data = "", Node *next = nullptr) : data(), next(nullptr){}
	string data;
	Node *next;
	void insert(Node *node){
		node->next = this->next;
		this.next = node;
		return;
	}
}

class HashTable {
public:
	HashTable(int n = 100) :  data(n), cnt(0){}
	void insert(string s){
		int ind = hash_func(s) % data.size(); // 计算哈希值
		recalc_ind(ind, s); // 冲突处理
		Node *p = &data[ind];
		while(p->next && p ->next->data != s) p = p->next;
		if(p->next == nullptr){
			p->insert(new Node(s));
			cnt += 1;
			if(cnt > data.size() * 3) expand();
		}
		return;
	}
	
	bool find(string s){
		int ind = hash_func(s) % data.size();
		recalc_ind(ind, s); 
		Node *p = data[ind].next;
		while(p && p->data != s) p = p->next;
		return p !== nullptr;
	}
private:
	int cnt;
	vector<Node> data;
	
	int hash_func(string &s){
		int seed = 131, hash = 0;
		for(ing i = 0; s[i]; i++){
			hash = hash * seed + s[i];
		}
		return hash & 0x7fffffff;
	}

	void expand(){
		int n = data.size() * 2;
		HashTable h(n);
		for(int i = 0; i < data.size(); i++){
			Node *p = data[i].next;
			while(p){
				h.insert(p->data);
				p = p->next;
			}
		}
		*this = h;
		return;
	}
	
	void recalc_ind(int &ind, string &s){
		return;
	}
};

传统哈希表:存储空间与元素数量有关
布隆过滤器:存储空间与元素数量无关

布隆过滤器存储的是二进制标记
布隆过滤器,某数据通过多个哈希函数,映射到多个位置,位置记为1
当当前函数映射的多个位置只要有一个0,那该数据一定不存在,如果都是1,那么大概率存在
布隆过滤器有一定的误判率 ,鱼与熊掌不可兼得,应用于大数据量和对于信息安全有要求的场景

经典面试题 - 哈希结构封装

705. 设计哈希集合

class Node {
public:
    Node(int key = 0, Node * next = nullptr) : key(key), next(next){}
    int key;
    Node *next;
    void insert_after(Node *node){
        node->next = this->next;
        this->next = node;
        return ;
    }
    void remove_after(){
        if(this->next == nullptr) return;
        Node *p = this->next;
        this->next = this->next->next;
        delete p;
        return;
    }
};

class MyHashSet {
public:
    vector<Node> data;
    MyHashSet() : data(100) {}

    int hash_func(int key){ return key & 0x7fffffff; }
    
    void add(int key) {
        if(contains(key)) return;
        int ind = hash_func(key) % data.size();
        data[ind].insert_after(new Node(key));
        return;
    }
    
    void remove(int key) {
        int ind = hash_func(key) % data.size();
        Node *p = &data[ind];
        while(p->next && p->next->key != key) p = p->next;
        p->remove_after();
    }
    
    bool contains(int key) {
        int ind = hash_func(key) % data.size();
        Node *p = data[ind].next;
        while(p && p->key != key) p = p->next;
        return p != nullptr;
    }
};

706. 设计哈希映射

class Node {
public:
    Node(int key = 0,int value = 0, Node * next = nullptr) : key(key), value(value), next(next){}
    int key, value;
    Node *next;
    void insert_after(Node *node){
        node->next = this->next;
        this->next = node;
        return ;
    }
    void remove_after(){
        if(this->next == nullptr) return;
        Node *p = this->next;
        this->next = this->next->next;
        delete p;
        return;
    }
};

class MyHashMap {
public:
    vector<Node> data;
    MyHashMap() : data(100){}
    int hash_func(int key) { return key & 0x7ffffffff; }
    
    void put(int key, int value) {
        int ind = hash_func(key) % data.size();
        Node *p = &data[ind];
        while(p->next && p->next->key != key) p = p->next;
        if(p->next){
            p->next->value = value;
        }else{
            p->insert_after(new Node(key, value));
        }
    }
    
    int get(int key) {
        int ind = hash_func(key) % data.size();
        Node *p = data[ind].next;
        while(p && p->key != key) p = p->next;
        if(p == nullptr) return -1;
        return p->value;
    }
    
    void remove(int key) {
        int ind = hash_func(key) % data.size();
        Node *p = &data[ind];
        while(p->next && p->next->key != key) p = p->next;
        p->remove_after();
    }
};

面试题 16.25. LRU 缓存

哈希链表既兼具了链表的灵活性,又具备了快速灵活查找的特性

class Node {
public :
    Node(int key = 0, int value = 0, Node *prev = nullptr, Node *next = nullptr)
    :key(key), value(value), prev(prev), next(next){}
    int key, value;
    Node *next, *prev;
    Node *remove_this(){
        if(this->prev) this->prev->next = this->next;
        if(this->next) this->next->prev = this->prev;
        this->next = this->prev = nullptr;
        return this;
    }
    void insert_prev(Node *node){
        node->next = this;
        node->prev = this->prev;
        if(this->prev) this->prev->next = node;
        this->prev = node;
        return ;
    }
};

class HashList{
public :
    int capacity;
    Node head, tail;
    unordered_map<int, Node *> data;
    
    HashList(int capacity) : capacity(capacity){
        head.next = &tail;
        tail.prev = &head;
    }

    void put(int key, int value){
        if(data.find(key) != data.end()){
            data[key]->value = value;
            data[key]->remove_this();
        }else{
            data[key] = new Node(key, value);
        }
        tail.insert_prev(data[key]);
        if(data.size() > capacity){
            data.erase(data.find(head.next->key));
            delete head.next->remove_this();
        }
        return;
    }

    int get(int key){
        if(data.find(key) == data.end()) return -1;
        data[key]->remove_this();
        tail.insert_prev(data[key]);
        return data[key]->value;
    }
};

class LRUCache {
public:
    HashList h;
    LRUCache(int capacity) : h(capacity) {}
    
    int get(int key) {
        return h.get(key);
    }
    
    void put(int key, int value) {
        h.put(key, value);
        return;
    }
};

535. TinyURL 的加密与解密

  • 0-52 ‘a’ - ‘z’
  • 26-51 ‘A’ - ‘Z’
  • 52-61 ‘0’-‘9’
class Solution {
public:
    Solution() { srand(time(0)); }
    char ch(int x){
        x %= 62;
        if(x < 26) return x + 'a';
        if(x < 52) return x - 26 + 'A';
        return x - 52 + '0';
    }
    string rand_string(int n){
        string s = "";
        for(int i = 0; i< n; i++){
            s += ch(rand());
        }
        return s;
    }
    unordered_map<string, string> h;
    string encode(string longUrl) {
       string s;
       do{
           s = rand_string(5);
       } while ( h.find(s) != h.end());
       h[s] = longUrl;
       return s;
    }

    // Decodes a shortened URL to its original URL.
    string decode(string shortUrl) {
        return h[shortUrl];
    }
};

187. 重复的DNA序列

class Solution {
public:
    vector<string> findRepeatedDnaSequences(string s) {
        unordered_map<string, int> h;
        for(int i = 0, I = s.size() - 9; i < I; i++){
            h[s.substr(i, 10)] += 1;
        }
        vector<string> ret;
        for(auto x : h){
            if(x.second == 1) continue;
            ret.push_back(x.first);
        }
        return ret;
    }
};

318. 最大单词长度乘积

采用哈希本质思想,将一个字符串映射26位二进制向量

class Solution {
public:
    int maxProduct(vector<string>& words) {
        vector<int> mark(words.size());
        for(int i = 0; i < words.size(); i++){
            for(auto c: words[i]){
                mark[i] |= (1 << (c - 'a'));
            }
        }
        int ans = 0;
        for(int i = 0; i < words.size(); i++){
            for(int j = i; j < words.size(); j++){
                if(mark[i] & mark[j]) continue;
                ans = max(ans, int(words[i].size() * words[j].size()));
            }
        }
        return ans;
    }
};

240. 搜索二维矩阵 II

class Solution {
public:
    bool searchMatrix(vector<vector<int>>& matrix, int target) {
        int i = 0 ,j = matrix[0].size() - 1;
        while(i < matrix.size() && j >= 0){
            if(matrix[i][j] == target) return true;
            if(matrix[i][j] < target) i += 1;
            else j -= 1;
        }
        return false;
    }
};

979. 在二叉树中分配硬币

class Solution {
public:
    int getResult(TreeNode *root, int &n, int &m){
        n = 0, m = 0;
        if(root == nullptr) return 0;
        n = 1, m = root->val;
        int ans = 0, n1, m1;
        ans += getResult(root->left, n1, m1);
        ans += abs(n1 - m1);
        n += n1, m += m1;
        ans += getResult(root->right, n1, m1);
        ans += abs(n1 - m1);
        n += n1, m += m1;
        return ans;
    }
    int distributeCoins(TreeNode* root) {
        int n, m;
        return getResult(root, n, m);
    }
};

430. 扁平化多级双向链表

class Solution {
public:
    Node* flatten(Node* head) {
        Node *p = head, *q, *k;
        while(p){
            if(p->child){
                q = p->next;
                k = flatten(p->child);
                p->child = nullptr;
                p->next = k;
                k->prev = p;
                while(p->next) p = p->next;
                p->next = q;
                if(q) q->prev = p;
            }
            p = p->next;
        }
        return head;
    }
};

863. 二叉树中所有距离为 K 的结点

class Solution {
public:
    void dfs(TreeNode *root, int c, int k, vector<int>&ret){
        if(k < 0) return;
        if(root == nullptr) return;
        if(c == k){
            ret.push_back(root->val);
            return;
        }
        dfs(root->left, c + 1, k, ret);
        dfs(root->right, c + 1, k, ret);
        return;
    }
    TreeNode *getResult(TreeNode *root, TreeNode *target, int &k, vector<int> &ret){
        if(root == nullptr) return nullptr;
        if(root == target){
            dfs(root, 0, k, ret);
            return root;
        }
        if(getResult(root->left, target, k ,ret)){
            k -= 1;
            if(k == 0) ret.push_back(root->val);
            dfs(root->right, 0, k - 1, ret);
            return target;
        }else if(getResult(root->right, target, k ,ret)){
            k -= 1;
            if(k == 0) ret.push_back(root->val);
            dfs(root->left, 0, k - 1, ret);
            return target;
        }
        return nullptr;
    }

    vector<int> distanceK(TreeNode* root, TreeNode* target, int k) {
        vector<int> ret;
        getResult(root, target, k, ret);
        return ret;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值