CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 控制台(字符窗口)编程 搜索资源 - 1.2.0

搜索资源列表

  1. PROGRAMSEIDEL

    0下载:
  2. 一、 Seidel迭代法 算法8.2: 1. 输入矩阵A,右端项b ,初始迭代向量 X(0) ,维数n,容许误差ε ,最大容许迭代次数 N。 2. 置k=1. 3. 计算 X1=(b1-Σa1jxj(0))/a11 j=2,3,…….,n Xi=(bi-Σaijxj-Σaijxj(0))/aii, i=2,3,……,n-1 Xn=(bn-Σanjxj)/ann j=1,2,…….,n-1 4.若||X-X(0)|| <ε,输出X , 停机;否则,转步骤5。
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:51814
    • 提供者:Gellss
  1. MouseDocument

    0下载:
  2. 算法5.1 1. 输入a,b,ε。 2. 置n=1,h=(b-a)/2,T0=h(f(a)+f(b)). 3. 置F=0,对i=1,2,....n,求 F=F+f(a+(2i-1)h) 4. T=T0+hF. 5.若|T-T0|<3ε,输出I≈T停机 否则置2n=>n,h/2=>h,T=>T0,转步骤3。 程序说明: 本程序暂时支持正弦函数的计算
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:901
    • 提供者:高峰
  1. MouseDocume

    0下载:
  2. 算法5.1 1. 输入a,b,ε。 2. 置n=1,h=(b-a)/2,T0=h(f(a)+f(b)). 3. 置F=0,对i=1,2,....n,求 F=F+f(a+(2i-1)h) 4. T=T0+hF. 5.若|T-T0|<3ε,输出I≈T停机 否则置2n=>n,h/2=>h,T=>T0,转步骤3。 程序说明: 本程序暂时支持正弦函数的计算
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:786
    • 提供者:高峰
  1. propercomset

    0下载:
  2. 获取串口合法的stopbits与bytesize组合 用法: propercomset comx x=1,2,3,-legitimate access to the serial port and bytesize stopbits portfolio usage : propercomset comx x = 1,2,3,
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:7870
    • 提供者:yxw
  1. 2

    0下载:
  2. 用回溯解背包问题 假设有n件物品,定义一个结构体a[]来存储,结构体有两个成员weight和value(weight表示重量,value表示价值)先定义一个数组col[]表示每个物品当前状态(为1表示被选,为0表示未被选),其初值全为1,从下标为0开始遍历,当前所选物品总重和总价值分别设为tw和tv(初值均为0),背包的限重设为limit,若第i个物品满足tw+a[i].weight<=limit且col[i]==1 就将a[i].weight和value加入tw和tv,否则col[i]设
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:7016
    • 提供者:STartBoy
  1. avce00-1.2.0.tar

    0下载:
  2. GIS相关工具,可以把e00和 Coverage 文件进行互转-GIS tools, and can e00 files Cross Coverage
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:143860
    • 提供者:
  1. console_calc

    0下载:
  2. 简单计算器,支持多种运算符。输入表达式:1+2,然后回车,即可得到结果-simple calculators, and support for multiple operators. Importation of expression : 1 2, and then Enter, the results can be obtained
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:7222
    • 提供者:
  1. 背包问题2 递归

    1下载:
  2. 一个0-1背包问题的C++实现,背包的容量为t,各物品的重量分别为w1,w2。。。wn,找一个能装下最大重量的物品组合,用递归形式的贪心法实现-a 0-1 knapsack problem of C achieved, the capacity for backpack t, the weight of the items were w1, w2. . . Wn, one can find the largest installed under the weight of goods portf
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2008-10-13
    • 文件大小:8600
    • 提供者:飞杨
  1. acm

    0下载:
  2. 北大OJ,3668到3673题源码,全部是通过代码-3070:The cows are so very silly about their dinner partners. They have organized themselves into three groups (conveniently numbered 1, 2, and 3) that insist upon dining together. The trouble starts when they line up at the
  3. 所属分类:Console

    • 发布日期:2017-03-29
    • 文件大小:3639
    • 提供者:杨爽
  1. sport

    0下载:
  2. 参加运动会有n个学校,学校编号为1……n。比赛分成m个男子项目,和w个女子项目。项目编号为男子1……m,女子m+1……m+w。不同的项目取前五名或前三名积分;取前五名的积分分别为:7、5、3、2、1,前三名的积分分别为:5、3、2;哪些取前五名或前三名由学生自己设定。(m<=20,n<=20) 功能要求: 1) 可以输入各个项目的前三名或前五名的成绩; 2) 能统计各学校总分, 3) 可以按学校编号或名称、学校总分、男女团体总分排序输出; 4) 可以按学校编号查询
  3. 所属分类:Console

    • 发布日期:2017-04-02
    • 文件大小:1613
    • 提供者:王宜晓
  1. wangluo

    0下载:
  2. 一个数字 1 2 3 的矩阵输入判定器,用神经网络算法实现,可以训练识别等多种功能用C++语言实现-1 2 3 a digital input to determine the matrix, and use of neural network algorithm, can be trained to identify a variety of functions, such as C++ language used to achieve
  3. 所属分类:Console

    • 发布日期:2017-05-23
    • 文件大小:7448380
    • 提供者:张帅
  1. hh

    0下载:
  2. 一堆猴子都有编号,编号是1,2,3 ...m ,这群猴子(m个)按照1-m的顺序围坐一圈,从第1开始数,每数到第N个,该猴子就要离开此圈,这样依次下来,直到圈中只剩下最后一只猴子,则该猴子为大王。 -Monkeys have a pile of numbers is the number 1,2,3 ... m, this group of monkeys (m) of 1-m in accordance with the order around a circle, from the be
  3. 所属分类:Console

    • 发布日期:2017-04-07
    • 文件大小:24592
    • 提供者:浮萍
  1. Emgu.CV.x86_2.0.1.0_windows_installer

    0下载:
  2. the emuge cv is the free c# wrapper for using opencv in dot net plateform c#-the emuge cv is the free c# wrapper for using opencv in dot net plateform c#......
  3. 所属分类:Console

    • 发布日期:2017-06-20
    • 文件大小:31820916
    • 提供者:silent
  1. velodyne-driver-1.0.tar

    0下载:
  2. README for Velodyne Driver Table of Contents: 1. Installation 2. Test Usage 3. API Installation: To install, download the tarball or checkout the source code run the following
  3. 所属分类:Console

    • 发布日期:2017-03-26
    • 文件大小:303480
    • 提供者:yxy
  1. 05

    0下载:
  2. 有1、2、3、4、5五个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?-Five digits are 1,2,3,4,5, to form the number of distinct three-digit numbers with no repetition? Is how much?
  3. 所属分类:Console

    • 发布日期:2017-04-16
    • 文件大小:214769
    • 提供者:李世超
  1. 2

    0下载:
  2. 有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? -1, 2, 3, 4 numbers, how many can be composed of different from each other and no redundant digital three figures? All is a number?
  3. 所属分类:Console

    • 发布日期:2017-12-08
    • 文件大小:537
    • 提供者:张波
  1. Expression-evaluation

    0下载:
  2. 输入中缀算术表达式S,S中的操作数为非负整数,只含+,-和*,/运算,也可能含有括号(),运算符的计算顺序和实际四则运算的计算顺序相同. 输出表达式S的值. 注意除法运算只取整数部分,例如1/2=0. Input 输入有多组数据. 每组数据是一个算术表达式S,S的长度不超过100. 输入的S保证合法,而且不包含多余的空格或制表符. S的操作数、中间结果和最终结果都不会超过int类型的范围,也不会出现除数为0的情况. 输入以#号结束. Output 对于每个算术表达式S,输
  3. 所属分类:Console

    • 发布日期:2017-11-20
    • 文件大小:6937391
    • 提供者:刘畅
  1. 1.2

    0下载:
  2. 实现DES加密算法一、实验目的 1、掌握DES加、解密算法的原理和过程; 2、能够编写程序实现DES加、解密,以及DES的应用。-DES encryption algorithm to achieve a purpose of the experiment a master DES encryption, decryption algorithm principles and processes 2, able to write a program to achieve DES enc
  3. 所属分类:Console

    • 发布日期:2017-04-17
    • 文件大小:215146
    • 提供者:lihualuo
  1. 2

    0下载:
  2. 在n*n的棋盘上(1<=n<=10)填入1、2、3、….、n*n,共有n*n个数,使得任意相邻数的和为素数。 输入:n 输出:若有多个解,则需输出第一行、第一列之和均为最小的排列方案;若无解,则输出‘no’。-On board n* n (1 <= n <= 10) filled with 1,2,3, ...., N* n, a total number of n* n, so that any adjacent, and the number of prime
  3. 所属分类:Console

    • 发布日期:2017-04-12
    • 文件大小:612
    • 提供者:赵靖宇
  1. 1

    0下载:
  2. 《计算机算法设计与的分析》第四版第一章的答案算法实现题,1-1数字统计问题,1-2字典序问题,1-3最多约束问题1-5最大间隙问题- Computer algorithm design and analysis of the fourth edition of the first chapter of the answer algorithm to achieve the title, 1-1 digital statistics, 1-2 dictionary order problem,
  3. 所属分类:Console

    • 发布日期:2017-05-06
    • 文件大小:1031740
    • 提供者:catherine
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com