搜索资源列表
股票格式文档
- 数据结构共分三个结构体: 1. 开始部分,存放一些全局数据的结构体(共24个字节) 由0x00 - 0x17开始 起止地址 数据内容 数据含义 数据类型 00 - 03 F4 9B 13 FC 日线文件标志 Integer 04 - 07 10 02 00 00 保留 Integer 08 - 0B 00 00 00 00 保留 Integer 0C - 0F D1 04 00 00 证券总数 Integer 10 - 13 81 0C 00 00 需添加之起始块号 Integer 就是文件的最
branch-and-cut-algorithm.rar
- 分支-切割法是把分支定界法与割平面法结合起来,用来求解混合整数规划问题。 ,Branch and cut is a method of combinatorial optimization for solving integer linear programs, that is, linear programming problems where some or all the unknowns are restricted to integer values. The method is
java-code1
- 给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字-Give a positive integer of not more than 5, requirements: First, find it is by several orders, second, reverse printing out the digits
yuhen
- 用贪心算法解题: 设n是一个正整数。现在要求将n分解为若干互不相同的自然数的和,且使这些自然数 的乘积最大。-Greedy algorithm with problem-solving: Let n be a positive integer. N decomposition will now require a number of separate and natural number, and make them the product of the largest natural nu
b
- 在程序中输入数组大小n,通过动态分配内存函数malloc产生一个整型数组,接着输入该数组的n个元数,并使用一个函数对组数进行排序(从小到大,要求用选择法实现)-In the procedure input array size n, through dynamic allocation of memory function malloc generate an integer array, and then enter the array of n-ary number, and use a f
a
- 该功能是把一个整数按大小顺序插入已排好序的数组中-This function is to insert an integer order of size has been sorted array
embeded
- 预处理器(Preprocessor) 1. 用预处理指令#define 声明一个常数,用以表明1年中有多少秒(忽略闰年问题) #define SECONDS_PER_YEAR (60 * 60 * 24 * 365)UL 我在这想看到几件事情: 1). #define 语法的基本知识(例如:不能以分号结束,括号的使用,等等) 2). 懂得预处理器将为你计算常数表达式的值,因此,直接写出你是如何计算一年中有多少秒而不是计算出实际的值,是更清晰而没有代价的。 3).
BigInteger
- it is a big integer library used to handle large integer numbers
shuixianhuashu
- 求所有的水仙花数,将各个水仙花数存放到一个数组中并在屏幕上打印出来。所谓水仙花数是指一个三位正整数,它各位数字的立方之和等于此正整数。例如,153是一个水仙花数,因为153=13+53+-For all the daffodil number, will each daffodil number stored in an array and print out on the screen. The so-called daffodil number is refers to a three po
java3
- 实验四:毕达哥拉斯三元组 实验目的:1.嵌套的for循环。 2.使用计数器控制的循环。 3.使用“强力(brute force)”来解决问题。 问题描述:直角三角形的各边长度都可以为整数。这组代表直角三角形各边的整型值称为 毕达哥拉斯三元组。这3条边必须满足如下关系:两条直角边的平方和等于斜边的平方。在1到500的范围内,找出所有适合于side1,side2和hypotenuse的整形毕达哥拉斯三元组。使用一个3层嵌套的for循环尝试所有可能的情况。该程序是“强力
ISO_14496-3_Audio-Amd2
- This subpart of ISO/IEC 14496-3 describes the MPEG-4 Audio Lossless Coding (ALS) algorithm for lossless coding of audio signals. MPEG-4 ALS is a lossless compression scheme for digital audio data, i.e. the decoded data is a bit-identical rec
Java-public-Factorization
- 利用Java编程实现了将一个整数的分解,将一个正整数分解质因数。 -Java programming to achieve the prime factors of an integer decomposition, a positive integer factorization.
Javacode_2
- 输入一个长的整数,可以实现从右边4~7位输出-Enter a long integer, can achieve the output from the right, from 4 to 7
java_4
- 给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。-Give a positive integer of not more than 5, the requirements: First, find it is by several orders, second, reverse printing out the digits.
example3
- 题目:一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少? 1.程序分析:在10万以内判断,先将该数加上100后再开方,再将该数加上268后再开方,如果开方后-Title: an integer plus 100 is a perfect square number plus 168 is a perfect square number, what the number is? Program analysis: less than 100,000 ju
example14
- 题目:将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。 程序分析:对n进行分解质因数,应先找到一个最小的质数k,然后按下述步骤完成: (1)如果这个质数恰等于n,则说明分解质因数的过程已经结束,打印出即可。 (2)如果n<>k,但n能被k整除,则应打印出k的值,并用n除以k的商,作为新的正整数你n, 重复执行第一步。 (3)如果n不能被k整除,则用k+1作为k的值,重复执行第一步。-Topic: the prime factors o
Project1
- Print a number-triangle Write a program that asks a user to input an integer number that is greater than 0 and smaller than 10, and then outputs a number-triangle. For example, if the input is 2, the number-diamond looks like this: 1 121
77885
- 程序产生N个随机的整数,存放在数组a中。然后根据数组a建立线性链表, 再删除链表中所有重复元素,并输出无重复元素结点的链表结点的值 -Program generates a random integer N, stored in the array a. Then establish a linear list of the array,     Then delete all duplicate elements in the list, and output
5
- This paper presents a method for optimum tuning of Fractional PID controllers using PSO algorithm which have fractional or integer order transfer functions. Particle swarm optimization (PSO) is a robust stochastic optimization technique based on the
BNUTBDJNBOOFR
- 【程序29】 题目:给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。 1. 程序分析:学会分解出每一位数,如下解释:(这里是一种简单的算法,师专数002班赵鑫提供) 2.程序源代码: 复制代码 代码如下: #include stdio.h #include conio.h main( ) { long a,b,c,d,e,x scanf( ld ,&x) a=x/10000 分解出万位 b=x 10000