编程实现哈希存储算法的简单实例(2)

Student_info *pstu = Hash_get("key2");
        if (pstu == NULL)
        {
                        printf("ERROR:Get NULL\n");
        }
        else
        {
                        printf("name:%s\nage:%d\n",pstu->name.c_str(),pstu->age);
        }

printf("end~\n");
        delete[] buff;
        return 0;
}

如有任何问题,希望各位指正,谢谢。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/420cb71ecb38c8615d0d70da9727d32a.html