搜索结果
找到约 100 项符合
integer 的查询结果
按分类筛选
- 全部分类
- Java编程 (9)
- 数学计算 (8)
- 数据结构 (7)
- Delphi控件源码 (7)
- 其他 (6)
- 单片机编程 (4)
- 压缩解压 (4)
- 其他书籍 (4)
- 单片机开发 (4)
- matlab例程 (4)
- 源码 (4)
- 数值算法/人工智能 (3)
- 模拟电子 (2)
- 教程资料 (2)
- 可编程逻辑 (2)
- DSP编程 (2)
- 编译器/解释器 (2)
- 书籍源码 (2)
- Internet/网络编程 (2)
- Applet (2)
- 人工智能/神经网络 (2)
- Delphi/CppBuilder (2)
- 加密解密 (2)
- Mentor (1)
- 语音压缩 (1)
- 软件设计/软件工程 (1)
- 并行计算 (1)
- Oracle数据库 (1)
- 系统设计方案 (1)
- 软件工程 (1)
- JavaScript (1)
- 电子书籍 (1)
- 其他数据库 (1)
- 微处理器开发 (1)
- 嵌入式/单片机编程 (1)
- SQL Server (1)
- VIP专区 (1)
压缩解压 Computes the permanent of a nonnegative integer matrix. Notes: Compile in C++, "g++ -o permanent per
Computes the permanent of a nonnegative integer matrix. Notes: Compile in C++, "g++ -o permanent permanent.c".
其他 Computes the hafnian of a nonnegative integer matrix. Notes: Copy hafnian.c to main.c, in the same d
Computes the hafnian of a nonnegative integer matrix. Notes: Copy hafnian.c to main.c, in the same directory as Rothberg s code (see above). You can download the .tar directory with the code weighted-match.tar here. Then "make" the codes (this codes are in C, not C++). The program is then run by the ...
数据结构 merge sort give a set S of n integers and another integer x, determine whether or not there exits tw
merge sort give a set S of n integers and another integer x, determine whether or not there exits two elements in S whose sum is exactly x.
Java编程 a program that takes in an integer number as an argument and returns its equivalent in the binary a
a program that takes in an integer number as an argument and returns its equivalent in the binary
and octal formats.
数值算法/人工智能 ACM试题Problem K:Ones Description Given any integer 0 <= n <= 10000 not divisible by 2 or 5,
ACM试题Problem K:Ones
Description
Given any integer 0 <= n <= 10000 not divisible by 2 or 5, some multiple of n is a number which in decimal notation is a sequence of 1 s. How many digits are in the smallest such a multiple of n?
其他 BNB20 Finds the constrained minimum of a function of several possibly integer variables. % Usage: [
BNB20 Finds the constrained minimum of a function of several possibly integer variables.
% Usage: [errmsg,Z,X,t,c,fail] =
% BNB20(fun,x0,xstatus,xlb,xub,A,B,Aeq,Beq,nonlcon,settings,options,P1,P2,...)
%
% BNB solves problems of the form:
% Minimize F(x) subject to: xlb <= x0 <=xub
% A*x <= B ...
其他书籍 Power frequency harmonic measurement using integer periodic extension method
Power frequency harmonic measurement using integer periodic extension method
并行计算 用GOSS解线性方程组 Dim i As Integer 循环变量 Dim j As Integer 循环变量 Dim k As Integer 循环变量
用GOSS解线性方程组
Dim i As Integer 循环变量
Dim j As Integer 循环变量
Dim k As Integer 循环变量
数据结构 Given an positive integer A (1 <= A <= 109), output the lowest bit of A. For example, given A
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, we can write A in binary form as 1011000, so the lowest b ...
书籍源码 Did anyone ask for an integer version of sqrt? Following is an implementation I found and adapted.
Did anyone ask for an integer version of sqrt? Following is an implementation I
found and adapted. Hope it is useful for somebody.