CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - 递归函数

搜索资源列表

  1. BTree.二叉树的算法

    1下载:
  2. 二叉树的算法:计算高度、结点个数、交换左右儿子 问题的描述 写一完整函数,计算树的结点数目int CountNode(BTNode<T>* &t); 完善以下两个函数: 计算树的高度int Depth(BTNode<T>* &root); 对树的所有子树交换左右孩子void swapsons(BTNode<T>* &t);,Binary Tree Recursive Algorithm: Calculate the hei
  3. 所属分类:其他小程序

    • 发布日期:2016-01-25
    • 文件大小:2.16kb
    • 提供者:YY
  1. 20051018094019

    0下载:
  2. 二分法的c实现,折半查找函数,如果查找成功,函数返回关键字所在位置,否则返回-1-dichotomy c realized, binary search recursive function, if you succeed, the function returns keyword location, or else return-1
  3. 所属分类:Other systems

    • 发布日期:2017-12-01
    • 文件大小:959byte
    • 提供者:h
  1. Explor

    0下载:
  2. 算法实现和vector删除元素的举例说明,类继承虚函数-Recursive algorithm implementation and the vector delete elements illustrate class inherits a virtual function
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-03
    • 文件大小:853.14kb
    • 提供者:何创国
  1. tree

    0下载:
  2. 多元树的层次遍历、先根遍历、后根遍历 问题的描述: 函数填空:层次遍历多元树(在文件tree.cpp中3个空)、先根遍历、后根遍历的函数(在文件tree.h中2个空); 多元树的输入:在主程序中调用多元树的函数(定位根、找大儿子、找下一个兄弟等),输入某棵多元树。 -Multi-level tree traversal, the first traversal the root, root traversal issues Descr iption: function to
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-03
    • 文件大小:3.37kb
    • 提供者:YY
  1. shiyan14

    0下载:
  2. 编写具有如下函数原型的与非两种函数f,负责判断数组a的前n个元素是否从大到小完全有序了,是则返回true,否则返回false。并编制主函数对它们进行调用,以验证其正确性。 bool f(int a[], int n) 提示: (1)非函数中只需逐对地判断各a[i]与a[i+1]是否都已从大到小有序排列(i = 0,1,…,n-2)。 (2)函数中将问题分解处理为:若n=1(即只有1个元素时)则返回true而出口;n>1时,若最后一对元素不顺序则
  3. 所属分类:Other systems

    • 发布日期:2017-05-02
    • 文件大小:5.98kb
    • 提供者:
  1. shiyan15

    0下载:
  2. 编写具有如下函数原型的与非两种函数equ,负责判断数组a与b的前n个元素值是否按下标对应完全相同,是则返回true,否则返回false。并编制主函数对它们进行调用,以验证其正确性。 bool equ(int a[], int b[], int n) 提示:函数中可按如下方式来分解并处理问题,先判断最后一个元素是否相同,不同则返false;相同则看n是否等于1,是则返回true,否则进行调用(传去实参a、b与 n-1,去判断前n-1个元素的相等性),并返回调用的结果
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:9.8kb
    • 提供者:
  1. diguiqiujiecheng

    0下载:
  2. 函数求阶乘,用VC++编的,已通过调试-Seeking to use a recursive function, factorial, using VC++ compiled, and has passed the commissioning
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:100.49kb
    • 提供者:曹国平
  1. wjczym

    0下载:
  2. 本程序使用FindFirstFie和FineNextFile函数利用函数实现 具有很强的稳定性-This program uses FindFirstFie and FineNextFile function using recursive function to achieve highly stable
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1.78mb
    • 提供者:李东
  1. digui(dengjujiedianchazhigongshi)

    0下载:
  2. 函数做增距节点差值,计算方法的计算-digui
  3. 所属分类:Other systems

    • 发布日期:2017-03-25
    • 文件大小:708byte
    • 提供者:apgrs
  1. hannuotai

    0下载:
  2. 这是用c语言编写的汉诺太问题,里面有调试的全过程,可以帮助你很好地理解函数的用法;-It is written in c language problem too Hanover, which has the whole process of commissioning, can help you have a good understanding of the use of recursive functions
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:1.01kb
    • 提供者:廖鑫泉
  1. pailiezuhe1

    0下载:
  2. 函数生成组合数,输入组合公式的上下标m及n,即可得到满足条件的所有的组合 -Combination with a recursive function to generate the number of input combinations of upper and lower standard formula m and n, can be satisfied for all combinations of conditions
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-05
    • 文件大小:609.74kb
    • 提供者:席玺
  1. zuoye11

    2下载:
  2. 1.编写函数计算Fibonacci数列,能避免重复计算 输入:input.txt,仅包含一个整数n(0-90) 输出:程序应能检查输入合法性,若有错误,输出错误提示“WRONG”;否则输出F(n)。两种情况都输出一个回车(形成一个空行)。所有实例均应在30秒内输出结果。 提示:可用一数组保存Fibonacci数列,用一个特殊值表示还未计算出Fibonacci数,调用前先检查数组,若已计算,直接取用,不进行调用;若未计算,调用函数,计算完成后保存入数组。实际上,这
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-10
    • 文件大小:690byte
    • 提供者:张蕊
  1. zuoye12

    0下载:
  2. 编写函数,求n个元素集合的所有子集。-Write a recursive function, find the subset n elements collection.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-30
    • 文件大小:991byte
    • 提供者:张蕊
  1. invokeFiles

    0下载:
  2. 用python实现函数调用各目录下的文件夹-Recursive function call directory folder with python
  3. 所属分类:Other systems

    • 发布日期:2017-11-26
    • 文件大小:1.07kb
    • 提供者:zhuhe
  1. 13

    0下载:
  2. 定义一个函数,接受一个整数参数,并返回给整数的阶乘,程序使用循环让用户输入不同的值,程序将报告这些参数的值-Define a recursive function that takes an integer argument and returns the factorial of an integer to the program using a loop allows the user to enter a different value, the program will report
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-23
    • 文件大小:10.96kb
    • 提供者:周晓
  1. 1111

    0下载:
  2. 数据类型与的问题,编写了一个函数,用于求厄密多项式-Data types and recursive problem, write a recursive function for seeking Hermite polynomials
  3. 所属分类:Other systems

    • 发布日期:2017-04-23
    • 文件大小:211.07kb
    • 提供者:yangbo
  1. 汉诺塔课设

    0下载:
  2. 实现汉诺塔的设计,适合C++新手对函数的理解与掌握(The design of hannotta is suitable for the understanding and mastery of the recursive function of the novice c + +)
  3. 所属分类:其他

    • 发布日期:2017-12-20
    • 文件大小:1.6mb
    • 提供者:张满
  1. C语言迭代法详细讲解

    0下载:
  2. C语言迭代法举例讲解和法举例讲解.对于学完C语言函数后,详细了解函数迭代法和 法解决一些问题.(C language iterations are illustrated with examples and examples of recursion. After learning the function of the C language, the function iteration and the function iteration are detailed. Recurs
  3. 所属分类:其他

    • 发布日期:2018-01-10
    • 文件大小:12kb
    • 提供者:herbertz
  1. 2

    0下载:
  2. 根据题目要求使用函数,根据题目给定的数学算式,求出Succ(n)的值。可以在每一次调用函数时增加一个计数器,用来计算调用了多少次函数,最后输出Succ(n)的值和调用函数次数的值。(According to the requirement of topic, recursive function is used to calculate the value of Succ (n) according to the mathematical formula given by the t
  3. 所属分类:其他

    • 发布日期:2018-05-01
    • 文件大小:198kb
    • 提供者:鲸鱼和机遇
  1. 新建文件夹

    0下载:
  2. 对关键动作进行图像提取处理,运用函数调用功能(Perform image extraction on key actions)
  3. 所属分类:其他

    • 发布日期:2018-05-07
    • 文件大小:20.26mb
    • 提供者:浅灰灰啊
« 12 3 »
搜珍网 www.dssz.com