欢迎找我内推微软
上一页 1 ··· 9 10 11 12 13 14 15 下一页
摘要: Description 使用线性探测法(Linear Probing)可以解决哈希中的冲突问题,其基本思想是:设哈希函数为h(key) = d, 并且假定哈希的存储结构是循环数组, 则当冲突发生时, 继续探测d+1, d+2…, 直到冲突得到解决. 例如, 现有关键码集为 {47,7,29,11,1 阅读全文
posted @ 2017-01-08 17:34 zmj97 阅读(375) 评论(0) 推荐(0)
摘要: Description 请用HASH链式法来解决冲突,且规定链表在链表头插入新元素。 规定HASH函数为:h(x) = x % 11,即哈希数组下标为0~10. 给定两种操作: I 操作,插入一个新的正整数K到哈希表中 F 操作,查询整数K是否在哈希表中,若不在,输出-1;若存在,输出目前K在所在链 阅读全文
posted @ 2017-01-08 17:19 zmj97 阅读(134) 评论(0) 推荐(0)
摘要: Description template <typename E> class LinkedList { private: // inner class: linked-list node class Node { public: E data; Node * next; }; Node * fir 阅读全文
posted @ 2017-01-08 15:24 zmj97 阅读(259) 评论(0) 推荐(0)
摘要: Description At present, Zhongshan University has 4 campuses with a total area of 6.17 square kilometers sitting respectively on both sides of the Pear 阅读全文
posted @ 2017-01-08 14:18 zmj97 阅读(396) 评论(0) 推荐(0)
摘要: Description There are N cities and N-1 roads in Magic-Island. You can go from one city to any other. One road only connects two cities. One day, The k 阅读全文
posted @ 2017-01-07 19:48 zmj97 阅读(260) 评论(0) 推荐(0)
摘要: 输入: 对应PID为xxxxx 强制杀死进程: 或者直接: 阅读全文
posted @ 2016-12-20 20:42 zmj97 阅读(230) 评论(0) 推荐(0)
摘要: 输入上述命令即可(注意将最后一行命令中的 安装目录 改为你的mongodb的安装目录) 参考自: http://askubuntu.com/questions/772181/how-can-i-install-mongodb-on-32-bit-ubuntu 阅读全文
posted @ 2016-12-20 16:21 zmj97 阅读(609) 评论(0) 推荐(0)
摘要: 1.使用link标签引入css文件: 2.使用style标签: style标签可以出现在html的任何位置,但是一般写在head标签内。 3.使用标签的style属性: 4.使用@import引入css文件: 1)放在html的style标签内: 2)放在css文件中: 四者之间的比较: 要做到关注 阅读全文
posted @ 2016-12-03 10:46 zmj97 阅读(299) 评论(0) 推荐(0)
摘要: 在全局安装时报错,提示“Please try running this command again as root/Administrator.”, 加上sudo即可。 安装成功! 查看已安装包中包括express: 阅读全文
posted @ 2016-12-02 16:25 zmj97 阅读(2384) 评论(0) 推荐(0)
摘要: chrome firefox 都有 vimium (firefox 中为vimfx), 快捷键也差不多 下边是chrome中快捷键示意图: G = shift + g (其他同理) c+e = ctrl +e(其他同理) 常用的几个快捷键: gg 滚动到顶部 G 滚动到底部 j 向下滚动 k 向上滚 阅读全文
posted @ 2016-11-27 18:06 zmj97 阅读(279) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 下一页
欢迎找我内推微软