搜索资源列表
ccache
- 自己开发的缓存类,很清晰简便的使用,方便开发者应用缓存-Self-developed cache type, I am clear and easy to use, enabling developers to use the cache
greeting
- 设系统中有P个进程,各进程向其左边的进程发送一个消息(进程P0发给Pn-1),各个进程接收到消息之后,输出一条消息:“我是进程i,我收到了进程i+1的消息,消息内容是……。-P a set system in the process, the process, the process left him to send a message (process P0 distribution Pn-1), each process receives the message, the output of
trunk
- Bigamp算法仿真程序,用于5G下MIMO的低分辨率ADC的设计、分析等。-The User s Guide has very little right now. There is a reference to one example, but I am hoping to find more. Also, due to a server error we are trying to debug, the webpage may time several minutes to
折半查找法
- 折半查找法是效率较高的一种查找方法。假设有已经按照从小到大的顺序排列好的五个整数a0~a4,要查找的数是X,其基本思想是: 设查找数据的范围下限为l=1,上限为h=5,求中点m=(l+h)/2,用X与中点元素am比较,若X等于am,即找到,停止查找;否则,若X大于am,替换下限l=m+1,到下半段继续查找;若X小于am,换上限h=m-1,到上半段继续查找;如此重复前面的过程直到找到或者l>h为止。如果l>h,说明没有此数,打印找不到信息,程序结束。(The method of bin