CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - Binary-Positive

搜索资源列表

  1. AnEasyProblem

    0下载:
  2. ACM试题An Easy Problem Descr iption As we known, data stored in the computers is in binary form. The problem we discuss now is about the positive integers and its binary form. Given a positive integer I, you task is to find out an integer J, which
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:9.22kb
    • 提供者:LY
  1. LowestBit

    0下载:
  2. Given an positive integer A (1 <= A <= 109), output the lowest bit of A. For example, given A = 26, we can write A in binary form as 11010, so the lowest bit of A is 10, so the output should be 2. Another example goes like this: given A = 88, w
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:679byte
    • 提供者:shao
  1. BinarySearchTree

    0下载:
  2. 从键盘上输 入一串正整数, 最后输入-1作为输入结束的标志。如输入的序列为:2,5,7,23,48,96,……,-1。请以这些正整数的值作为二叉排序树中的结点的数据场之值,建立一棵二叉排序树。注意:请采用动态存储方法保存这棵二叉排序树,事先并未知道该二叉排序树中的结点的个数。-Input from the keyboard on a string of positive integers, the last input-1 as an input symbol of the end. Such
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:231.81kb
    • 提供者:syuanying
  1. BSTree

    0下载:
  2. 从键盘上输 入一串正整数, 最后输入-1作为输入结束的标志。以这些正整数的值作为二叉排序树中的结点的数据场之值,建立一棵二叉排序树要实现排序二叉树的插入。采取叶子插入法,即新插入的节点均为改二叉树的叶子节点,且满足中序有序性。-From the keyboard to enter a string of positive integers, the last input-1 as the input end of the sign. These are integer values as bin
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:374.07kb
    • 提供者:yezi
  1. Tree

    0下载:
  2. 数据结构经典实例,建立二叉排序树。从键盘上输 入一串正整数, 最后输入-1作为输入结束的标志。如输入的序列为:2,5,7,23,48,96,……,-1。请以这些正整数的值作为二叉排序树中的结点的数据场之值,建立一棵二叉排序树。-Classic examples of data structures, to establish binary sort tree. Keyboard input from a string of positive integers, the last input-1
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:9.08kb
    • 提供者:周子
  1. c

    1下载:
  2. 1.问题描述 对于给定的正整数n,格雷码为满足如下条件的一个编码序列: (1) 序列由2n个编码组成,每个编码都是长度为n的二进制位串。 (2) 序列中无相同的编码。 (3) 序列中位置相邻的两个编码恰有一位不同。 例如:n=2时的格雷码为:{00, 01, 11, 10}。 -1. Problem Descr iption for a given positive integer n, Gray code to meet a coding sequence of the
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2016-09-18
    • 文件大小:19.4kb
    • 提供者:杨小明
  1. HuffmanCode

    0下载:
  2. 现在有篇文章,请用二进制前缀编码对文章中出现所有字符进行其编码,使编码后的文章总长最短。 多组输入,第一个正整数T表示组数。 每组第一行有一个正整数n,1≤n≤100000表示所用的字符种数。 接下来一行为n个正整数,表示每个字符在文章中出现的次数。 输出编码的最小长度-There are articles, please use the binary prefix code for the article appeared in the encoding of
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:914byte
    • 提供者:yu
  1. PrintBinary

    0下载:
  2. 本函数将非负的单精度浮点型十进制数据转换为二进制打印出来,纯C代码-The function based on C is to print the binary of a positive number.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-05
    • 文件大小:823byte
    • 提供者:thinkpad
  1. 5070309487_2

    0下载:
  2. 从键盘上输入一串正整数, 最后输入-1作为输入结束的标志。如输入的序列为:2,5,7,23,48,96,……,-1。请以这些正整数的值作为二叉排序树中的结点的数据场之值,建立一棵二叉排序树。注意:请采用动态存储方法保存这棵二叉排序树,事先并未知道该二叉排序树中的结点的个数。-Enter the string from the keyboard, a positive integer, the last input-1 as the input end of the sign. If the i
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:16.45kb
    • 提供者:lianwenzhao
  1. RMB

    1下载:
  2. 一、设计人民币类,数据成员包含正负标志位、元、角、分 ,设计构造函数、输出函数、重载+、-、前置自增、后置自增、前置自减、后置自减、输出流插入运算符<<、输入流提取运算符>> . 其中前置自减、后置自减、<<和>>重载成友元函数。 自增表示增加1分钱。自减表示减少1分钱。加减法和构造时的进位要考虑。 编写主函数测试之。 功能说明: 1. 所有的人民币的输出和输出都要使用重载的运算符<<和>> 2
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1.31kb
    • 提供者:zby
  1. lzw_256

    0下载:
  2. C/C++实现LZW编码,对二进制浮点数(正负皆可)可进行有效压缩,解压无错,字典长度为256。-C/C++ LZW coding for binary floating-point numbers (can be positive or negative) can be an effective compression and decompression error-free, dictionary length is 256.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-03
    • 文件大小:1.99kb
    • 提供者:yangdong
  1. gray

    0下载:
  2. 格雷码生成 对于给定的正整数n,格雷码为满足如下条件的一个编码序列: (1) 序列由2n个编码组成,每个编码都是长度为n的二进制位串。 (2) 序列中无相同的编码。 (3) 序列中位置相邻的两个编码恰有一位不同。-Gray code are generated for a given positive integer n, the Gray code to meet a coding sequence of the following conditions: (1) sequences enco
  3. 所属分类:ELanguage

    • 发布日期:2017-12-04
    • 文件大小:2.27kb
    • 提供者:刘思洁
  1. jisuanqi

    1下载:
  2. 计算器编写,该科学计算器具有以下功能: ①运算功能:加、减、乘、除、求模、位异或、位与、位或、位非、正弦、反正弦、余弦、反余弦、正切、反正切、开方、开三次方、平方、倒数、均值、平方和、方差、标准差、阶乘、log2(x)、lg(x)、ln(x)、10x、2x、ex、(1+…+n)、xy、x(1/y)。 ②进制转换功能:要求能在二进制、八进制、十进制、十六进制之间进行任意的转换;能在任意进制下进行正数的加、减、乘、除、求模、位异或、位与、位或、位非运算。 ③输入功能:可清零、退格,可一键
  3. 所属分类:matlab

    • 发布日期:2017-04-26
    • 文件大小:18.08kb
    • 提供者:周雷
  1. convert

    1下载:
  2. 本程序在matlab中实现了十进制到二进制数的转换,包括正数与负数,并且输出位宽和精度可以自己调整。-The program is implemented in matlab decimal to binary conversion, including positive and negative numbers, and the output bit width and precision can be set
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:1.4kb
    • 提供者:唐利翰
  1. 1211

    14下载:
  2. Descr iption 给出一棵二叉树的结构,判断这棵二叉树是不是完全二叉树。必须使用二叉树类实现。 Input Format 输入文件一共包含N+1行。 第一行含有一个正整数N,代表树中结点总数。 第二行到第N+1行,每行包含二个整数。其中第i行的二个整数Pi,Qi,代表结点i的左孩子为Pi,右孩子为Qi。若Pi=0,则表明结点i没有左孩子。同样的,若Qi=0,则表明结点i没有右孩子。(第i行指的是这N行中的第i行) Output Format
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:392.95kb
    • 提供者:zan
  1. bonus1

    6下载:
  2. 浙大数据结构bonus1:Binary Search Tree,检验不同上载数据是否为同一颗树-A binary search tree is uniquely determined by a given ordered insertions of a sequence of positive integers. On the other hand, a given binary search tree may correspond to several different insertion
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:723byte
    • 提供者:Destinee
  1. 穷举n位二进制数

    0下载:
  2. 输入一个小于20的正整数n,要求按从小到大的顺序输出所有的n位二进制数,每个数占一行。(Enter a positive integer that is less than 20, and you want to output all of the n-bit binary Numbers in the order of small to large, each of which is a row.)
  3. 所属分类:数据结构

搜珍网 www.dssz.com