搜索资源列表
-
0下载:
用C语言实现进程调度-操作系统课程设计设计思想:
“最高优先数优先”调度算法的基本思想是把cpu分配给就绪队列中优先数最高的进程。采用动态优先数,即优先数在创建进程时给定一个初始值,当进程获得一次cpu后其优先数就减少1。-C language scheduling process-design courses on operating system design : "Priority number of the highest priority" scheduling
-
-
0下载:
C 语言常用算法程序集,对搞数学计算的人有一定的帮助,收藏也不错,以备不时之需!-algorithm program set in c in common use is some useful to people who study math and it is a good idea to keep it for the time when needed
-
-
0下载:
矢量数据的压缩方法常用的有道格拉斯—普克法、垂距法、光栏法。本文主要讨论道格拉斯—普克法,运用该算法的思想,用C语言于TC20中编写一个小程序,实现对既有线的简化。(压缩包里面有算法报告),Vector data compression methods are commonly used Douglas- Puck law, down from the method, light field method. This article focused on Douglas- Puck law, t
-
-
0下载:
Multiple Sequence Alignment Using Maximum Spanning Tree
生物信息学中一个重要topic:多序列联配。这里用最大生成树的思想来进行联配,算法为C语言实现。本程序在Dev-C++,Win Vista环境下实现。-Multiple Sequence Alignment Using Maximum Spanning Tree Bioinformatics an important topic: Multiple Sequence Alignme
-
-
0下载:
给定一个正整数的集合,子集和问题要求在这个正整数集合中,找出其和不超过正整数C的最大和数的子集,且设计的算法是基于近似算法的基本思想。-Given a set of positive integers, a subset of the requirements and problems in this set of positive integers, to find out and no more than the largest positive integer C, a subset of
-
-
0下载:
在市面上的字典都是按穷举方式生成的要么是数字,要么是字符,要么是字母,要么是胡乱的组合,我个人认为这样的字典太宠大,不适合现实中的做破解用.咋天晚上在拿服务器的时候写了个比较有针对性的字典,算法不是很严密,只是根据个人习惯写出来的.不过我觉得这种字典的思路要好一点,时间比较仓促,望高人指点一下.-Dictionary in the market are generated by the exhaustive way or figures, or characters, or letters, o
-
-
0下载:
关于无线传感器网络的路由算法研究,在能量均衡上的经典LEACH算法,用matlab进行的仿真,能够实现!-Abstract: The distributed wireless sensor net work and the technol ogy of wireless communicati on could realize the subsidence monit oring
and measuring in coalmine goaf . One of the i mportant r
-
-
0下载:
众所周知,面向对象的程序设计更适合对现实生活中的描述,更加体现了软件的工业化的精神,所以现在大部分的软件开发工作都围绕OOP的思想来进行的。但是在对现实生活中的实际问题,如何对所研究的系统进行面向对象的分析与设计-As we all know, object-oriented programming is more suitable for the descr iption of real life, more embodied the spirit of the industrializati
-
-
0下载:
数组是C语言中特性较强、功能较好的应用之一,然而数组也是不易理解和掌握的概念。本文针对C语言中重要内容之一"数组",结合实例,介绍数组在解决实际问题中的一些基本操作的基本思想、算法描述以及指出数组在实际应用中常出现的问题,以便于掌握数组的使用技巧,对同学们在学习数组时有一定的指导意义。-Array of C language features strong, one good application functionality, but the array is not easy to unde
-
-
0下载:
基数排序
基数排序(radix sort)属于“分配式排序”(distribution sort),又称“桶子法”(bucket sort)或bin sort,顾名思义,它是透过键值的部份资讯,将要排序的元素分配至某些“桶”中,藉以达到排序的作用,基数排序法是属于稳定性的排序,其时间复杂度为O (nlog(r)m),其中r为所采取的基数,而m为堆数,在某些时候,基数排序法的效率高于其它的稳定性排序法。
快速排序
快速排序由C. A. R. Hoare在1962年提出。它的基本思想是
-
-
0下载:
本程序是在Microsoft Visual C++ 2010版本上编写的,用C语言编写,通过算术算法的编码思想,实现将输入的源代码通过算术编码转化为二进制编码,并输出
(1)本程序仅限于输入的源代码为0-9这十个数字构成的,可以是这十个符号中的任意个符号构成,
(2)程序运行时需要输入要编码的原代码,源代码的个数不能超过十个
(3)输入完毕后即可显示经过编码后的二进制数-This procedure is written in Microsoft Visual C++ 2010 ve
-
-
0下载:
可以指定查看指定个数的解。在进行遍历过程中用到了贪心算法和回溯的思想。(You can specify the solution to the specified number. In the process of traversing, we use greedy algorithm and backtracking idea.)
-