⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ivu_min_hash.hxx

📁 hl2 source code. Do not use it illegal.
💻 HXX
字号:
// Copyright (C) Ipion Software GmbH 1999-2000. All rights reserved.

//IVP_EXPORT_PUBLIC

#ifndef _IVP_U_MINHASH_INCLUDED
#define _IVP_U_MINHASH_INCLUDED

#ifndef WIN32
#	pragma interface
#endif

//#ifdef DEBUG
#    define SORT_MINDIST_ELEMENTS
//#endif

class IVP_U_Min_Hash_Elem;

class IVP_U_Min_Hash_Elem {
public:
    IVP_U_Min_Hash_Elem *next;
    IVP_DOUBLE	value;
#if defined(SORT_MINDIST_ELEMENTS)
    int 	cmp_index;
#endif    
    void 	*elem;
};

extern unsigned int IVP_Hash_crctab[];

class IVP_U_Min_Hash {
    friend class IVP_U_Min_Hash_Enumerator;
    inline int hash_index(const int *key) const;
    unsigned int	size;
    IVP_U_Min_Hash_Elem **stadel;
    IVP_U_Min_Hash_Elem **min_per_array_pos;
    IVP_U_Min_Hash_Elem **elems;
    void min_added_at_index(IVP_U_Min_Hash_Elem *elem, int i);
    void min_removed_at_index(IVP_U_Min_Hash_Elem *elem, int i);
    
public:
    int			counter;
    
    IVP_U_Min_Hash(int size=256);	// size must be 2^x
    ~IVP_U_Min_Hash();
    
    void add(void *elem,IVP_DOUBLE value);
    void change_value(void *elem,IVP_DOUBLE new_value);
    
    void *find_min_elem(){	if (!stadel[1]) return NULL; else return stadel[1]->elem; };
    IVP_DOUBLE find_min_value(){	return stadel[1]->value; };
    int  is_elem(void *elem)const;
    void remove(void *elem);
    void remove_min();
};


class IVP_U_Min_Hash_Enumerator {
    IVP_U_Min_Hash *min_hash;
    IVP_U_Min_Hash_Elem *loop_elem;
    int		loop_index;
public:
    IVP_U_Min_Hash_Enumerator( IVP_U_Min_Hash *mh){
	min_hash = mh;
	loop_elem = 0;
	loop_index = -1;
    }
    
    void *get_next_element(){
	if (loop_elem) {
	    loop_elem = loop_elem->next;
	}	
	while(!loop_elem){
	    loop_index++;
	    if (loop_index >= (int)min_hash->size) return NULL;
	    loop_elem = min_hash->elems[loop_index];
	}
	return loop_elem->elem;
    }
    
    void *get_next_element_lt(IVP_DOUBLE max_limit){
	while (1){
	    if (loop_elem) {
		loop_elem = loop_elem->next;
	    }	
	    while(!loop_elem){
		loop_index++;
		if (loop_index >= (int)min_hash->size) return NULL;
		loop_elem = min_hash->elems[loop_index];
	    }
	    if (loop_elem->value < max_limit){
		return loop_elem->elem;
	    }
	}
    }
};


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -