搜索资源列表
-
0下载:
这般查找法又称二分查找法,这种方法对待查找的列表有两个要求:(1)必须采用顺序存储结构;(2)必须按关键字大小有序排列-Find such a law, also known as binary search method, this approach to find a list of treatment there are two requirements: (1) must be in the order of the storage structure (2) must be arra
-
-
0下载:
折半查找法,15个数的任意输入,排序后查找出要的数!-Binary search method, 15 the number of arbitrary input and want to find out the number of the sort!
-
-
0下载:
数据结构的算法集合,包含哈希表查找法与折半查找法-The collection of data structure of the algorithm contains a hash table lookup method and binary search method
-
-
0下载:
1.利用实验一建立的有序表,采用折半查找实现对某一已知的关键字的查找。
2.随机产生一组关键字,利用二叉排序树的插入算法建立二叉排序树,然后删除某一指定关键字元素。
3.已知散列函数为H(key)=key p(p为自定义的常数),冲突处理方法分别为线性探测法和外拉链法,建立散列表并实现查找某一指定关键字元素。-1. Experiment established orderly table, using a binary search to achieve a known keyword
-
-
0下载:
通过使用分治法进行二分搜索,代码已验证可放心使用-Binary search by using the divide-and-conquer method, the code can be assured Verified ~ ~
-
-
0下载:
1.基本训练
(1)先建立有序表,采用折半查找实现对某一已知的关键字的查找。
(2)输入一组关键字,利用二叉排序树的插入算法建立二叉排序树,然后删除某一指定关键字元素。
2.综合训练
哈希表设计:
【问题描述】
针对某个集体(比如你所在的班级)中的“人名”设计一个哈希表,使得平均查找长度不超过R,完成相应的建表和查表程序。
【基本要求】
假设人名为中国人姓名的汉语拼音形式。待填入哈希表的人名共有30个,取平均查找长度的上限为2。哈希函数用除留余数法(H
-
-
0下载:
使用回溯法解决的典型问题的算法:骑士巡游问题,n皇后问题,0-1背包问题。
使用递归与分治策略解决的几个问题的算法:Hanoi塔问题和二分搜索技术。-Uses backtracking method to solve the problems of the typical algorithms: the knight tour problem, n queen problem, 0-1 knapsack problem.
Recursion and divide and conq
-
-
0下载:
有15个数已按由大到小的顺序存放在一个数组中,现再输入一个数,要求用折半查找法找出该数是数组中第几个元素的值。如果该数不在数组中,则打印出“无此数”*/-There are 15 numbers in ascending order has been placed in an array, now and then enter a number, asked to use a binary search method to find the number of elements in the a
-
-
0下载:
编写一个函数利用折半查找方法在一个有序表里插入一个元素,并保持其有序性-Write a function using a binary search method to insert an element in an ordered list, and maintain the order of
-
-
0下载:
编写程序对数据序列采用二分查找法和顺序查找法查找元素的下标,要求使用类模板实现-Write a program for data sequences using binary search and sequential search method to find the elements under standard requires the use of class templates
-
-
0下载:
折半法查找数据,实现数据的精确查找
折半法查找数据,实现数据的精确查找-Method of binary data search
-
-
0下载:
该资料包含了三个小程序,1.二叉树的创建。2.决策树的创建。该程序中用递归的方法创建决策树并求出决策树的高度。3.查找树的最小节点以及树的后续节点。-The material consists of three small programs, 1. Create a binary tree. 2. Create a decision tree. Recursive method used to create the program and find the height of a decisio
-
-
0下载:
使用二分搜索方法,实现以下功能函数。
函数bisearch(R:列表,低,高,tkey:整数):整数
tkey是尚未被搜索的关键字值。如果tkey是在排序表R中,返回关键字的值的地址(或下标),否则,返回0。此外,当n =10时形成对半搜索二叉判定树。-Using the binary search method to achieve binary search
-
-
0下载:
在本文章里面,有各种举出算法的C语言实现
1、大数阶乘
2、大数乘法
3、任意进制转换
4、最大公约数
5、最小公倍数
6、快速傅里叶变换
7,字符串的替换,查找,截取
8、叉乘法求多边形的面积
9、快速,希尔,选择等各种排序
10、二叉树,链表,链栈
11、二分查找
12、求解线性方程组,也叫中国余数定理
13、求点到直线距离
14、Prim算法求最小生成器
15、判断点与直线的关系,俩条直线的关系
16、求排列组合数,俩矢量角度
-