搜索资源列表
integar to binary digital
- 一个将正整数转变成二进制数的代码,可以编译运行-to a positive integer into binary code, the compiler can run
Expreesion
- 一个表达式和一棵二叉树之间,存在着自然的对应关系。写一个程序,实现基于二叉树表示的算术表达式Expression的操作。 【基本要求】 【一】【必做部分】 假设算术表达式Expression内可以含有变量(a-z),常量(0-9)和二元运算符(+,-,*,/,^(乘幂))。实现以下操作: (1)ReadExpr(E)――以字符序列的形式输入语法正确的前缀表达式并构造表达式E。 (2)WriteExpr(E)――用带括号的中缀表达式输出表达式E。 (3)Assign(V,c
conversion(10and2)
- 十进制与二进制之间相互转换 正负数 整数与小数-Decimal and binary conversion between the number of positive and negative integers and decimals
Recursive
- 格雷码问题 1.问题描述 对于给定的正整数n,格雷码为满足如下条件的一个编码序列: (1) 序列由2n个编码组成,每个编码都是长度为n的二进制位串。 (2) 序列中无相同的编码。 (3) 序列中位置相邻的两个编码恰有一位不同。 例如:n=2时的格雷码为:{00, 01, 11, 10}。 设计求格雷码的递归算法并实现。 -Gray-code problem 1. Problem descr iption for a given positive integer n
11
- //Tom和Jack在玩一个数字游戏,对方随机报出一个四位正整数, //要求另外一方在1分钟内报出该数所对应的二进制数中最大的连续为1的位数数量。 //例如,Jack报出一个数29(11101),Tom应在1分钟之内报出3与之对应, //但Tom的数学较差,总是不能按时报出结果。你是Tom的好朋友,而且精通编程, //现在,Tom想请你为他写一段小程序来解决此问题。要求:输入一个正整数n(int类型), //输出该数所对应的二进制数中最大的连续为1的位数数量-//Tom an
1055fasdfasd
- Input 输入只有一行,包括两个正整数M, N (1<= M <= N <= 20),分别表示wlnwyyfc是第几个报数的和总的人数。 Output 从小到大顺序用二进制输出所有wlnwyyfc需要报的数字和需要略过的数字,每个数字一行。最大输出到11111111(2)。如果一个数字需要略过,在那一行输出"pass"(不包含引号)。 -Input input only a single line, including two pos
dianzizhangwu
- 需求与功能分析 1、通过建立不同帐务信息实现对个人理财的简单管理,个人帐务数据是由帐务明细条目构成,其信息包括:序号,日期(年、月、日),收支项名称,收支类型(收入/支出),收支金额(正/负数表示收支),备注等。 2、数据保存形式: 所有个人帐务数据以二进制文件保存,并通过对二进制文件的保存和载入实现帐务信息的存储管理 3、界面功能要求: 1) 采用友好的字符界面,实现一个功能控制菜单。 2) 每次操作都从该菜单选择,利用循环结构使得一次运行程序可进行多次操作。 需要
exercise
- (实习题) 从键盘上输 入一串正整数, 最后输入-1作为输入结束的标志。如输入的序列为:2,5,7,23,48,96,……,-1。请以这些正整数的值作为二叉排序树中的结点的数据场之值,建立一棵二叉排序树。注意:请采用动态存储方法保存这棵二叉排序树,事先并未知道该二叉排序树中的结点的个数。 2、 (作业题) 已知一棵排序二叉树,树中结点的形式为: data info left right 其中,data 给出结点的数据场,info 给出本结点的左
A_Shorter_1739074302004
- This code converts positive and negative decimal numbers into binary.The core source is hardly 4 lines long. VOTE if you like it.
TenToTwo
- 十进制转换成二进制,有检验输入的数是正数还是负数,采用相应的方法进行转换。-Decimal to binary, there are test input number is positive or negative, using the appropriate method of conversion.
searching
- /* binarysearch() - A binary search implementation which takes the same * arguments as the C library function bsearch() provided by stdlib.h. It * searches the sorted array at address base, which has nmemb elements, each of * which is size b
CharToUnicode
- 用MFC编写的。1.可以将字符(包括中文和英文)和Unicode相互转换。2.将正整数转化为八进制、二进制、十进制、十六进制。3.键盘钩子,根据按键,显示字符、ACS码值、二进制数值。编译环境VC++6.0,系统:windows xp SP3-Written in MFC. Can characters (including Chinese and English) and Unicode conversion. (2) a positive integer into octal, binary
Arithmetically-Challenged
- 题意就是给你四个数,运用算术运算,找出它的所有可能值的连续最长的起始值和终了值,如果有想同的最大长度,输出较大的。-Challenge 24 is a popular mathematics game used in many grade schools. In each game, contestants are given a card with four positive integers i1, i2, i3, i4 on it, and the first one who can us
float2bin
- 十进制转二进制,正负数、补码、浮点均可,非常强大-Decimal to binary, positive and negative numbers, complement, floating point can be
tree
- 编写一个算法程序实现: 1、建立一棵6个结点的二叉树,结点的数据值是正整数,并按中序输出之; 2、完成对以上二叉树中所有结点的左、右子树相互交换,并按中序输出交换以后的结果。 3、统计二叉树叶子结点的个数,并输出结果。 -Write an algorithm Program: 1. Establish a tree node 6 binary data value node is a positive integer, the output of the press in ord
stack
- 利用栈的基本操作将一个十进制的正整数转换成二进制数据-Will be a positive decimal integer into binary data using the basic operation of the stack
SearchAlgorithmTimeCompare
- 冒泡排序 正反方向的交替扫描冒泡排序 直接选择排序 直接插入排序 折半插入排序 希尔排序 快速排序 改进的归并排序 堆排序 最高优先的基数排序 实现及速度比较。-Bubble Sort alternating positive and negative direction scan directly Sort Bubble Sort direct insertion sort binary insertion sort Shell sort Qui
sort.tar
- 利用随机函数产生8个样本的20000个随机整数(其中之一已经是正序,之一是逆序),利用直接插入排序、折半插入排序,起泡排序、快速排序、选择排序、堆排序,基数排序七种排序方法进行排序(结果为由小到大的顺序),并统计每一种排序算法对不同样本所耗费的时间(即比较次数)。-Using random function to generate 20000 random integers 8 samples (one of which is positive, one is the reverse), usi