搜索:Int
找到约 483 项符合「Int」的查询结果
结果 483
按分类筛选
- 全部
- 其他 (22)
- 汇编语言 (13)
- 数据结构 (12)
- 数学计算 (11)
- Java编程 (10)
- VC书籍 (6)
- 其他书籍 (5)
- 单片机开发 (5)
- 书籍源码 (4)
- 文章/文档 (4)
- 软件设计/软件工程 (4)
- 加密解密 (3)
- USB编程 (3)
- 压缩解压 (2)
- Linux/Unix编程 (2)
- 游戏 (2)
- 嵌入式/单片机编程 (2)
- 人工智能/神经网络 (2)
- 微处理器开发 (2)
- 其他嵌入式/单片机内容 (2)
- 技术资料 (2)
- 单片机编程 (1)
- 通讯/手机编程 (1)
- 操作系统开发 (1)
- 嵌入式综合 (1)
- 电子书籍 (1)
- 语音压缩 (1)
- 编译器/解释器 (1)
- Applet (1)
- 网络 (1)
- 文件格式 (1)
- CA认证 (1)
- uCOS (1)
- 嵌入式Linux (1)
- Java书籍 (1)
- STL (1)
- 交通/航空行业 (1)
- 中间件编程 (1)
- 邮电通讯系统 (1)
- GPS编程 (1)
- Jsp/Servlet (1)
https://www.eeworm.com/dl/644/270637.html
汇编语言
class Time { public: Time(int =0,int =0,int =0) void setTime(int,int,int) void printMilita
class Time
{
public:
Time(int =0,int =0,int =0)
void setTime(int,int,int)
void printMilitary()
void printStandard()
private:
int hour
int minute
int second
}
https://www.eeworm.com/dl/534/255740.html
其他
huffman 编码。typedef struct { int weight int flag int parent int lchild int rchild }
huffman 编码。typedef struct
{
int weight
int flag
int parent
int lchild
int rchild
}hnodetype
https://www.eeworm.com/dl/534/456882.html
其他
Usage: void CRC(int*,int*,int,int) Input: XAR0:coded data(InputData)
Usage: void CRC(int*,int*,int,int)
Input: XAR0:coded data(InputData)
XAR1:decoded CRC bits(CrcPoly)
T0: Length of coded data(CodeOutlen)
T1: Length of CRC bits(CrcPolylen) ...
https://www.eeworm.com/dl/686/223786.html
VC书籍
void statistics(int signo) unsigned short cal_chksum(unsigned short *addr,int len) int pack(int
void statistics(int signo)
unsigned short cal_chksum(unsigned short *addr,int len)
int pack(int pack_no)
void send_packet(void)
https://www.eeworm.com/dl/658/393667.html
STL
int getDivisor(int iNum) { int i = 1 int sum = 0 if (0 == iNum) { return 1 } while
int getDivisor(int iNum)
{
int i = 1
int sum = 0
if (0 == iNum)
{
return 1
}
while (i <= iNum / 2)
{
if (0 == iNum % i)
{
sum++
}
i++
}
return (sum+1)
}
https://www.eeworm.com/dl/619/451808.html
Linux/Unix编程
int show_char(int n, const char *name, chtype code) { const int height = 16 int row = 4 + (
int show_char(int n, const char *name, chtype code)
{
const int height = 16
int row = 4 + (n height)
int col = (n / height) * COLS / 2
mvprintw(row, col, " *s : ", COLS/4, name)
addch(code)
return n + 1
}
https://www.eeworm.com/dl/650/376204.html
人工智能/神经网络
河內塔問題 #include<stdio.h> #include<stdlib.h> int fun_a(int) void fun_b(int,int,int,in
河內塔問題
#include<stdio.h>
#include<stdlib.h>
int fun_a(int)
void fun_b(int,int,int,int)
int main(void)
{
int n
int option
printf("題目二:河內塔問題\n")
printf("請輸入要搬移的圓盤數目\n")
scanf("%d",&n)
printf("最少搬移的次數為%d次\n",fun_a(n))
printf("是否顯示 ...
https://www.eeworm.com/dl/684/304512.html
软件设计/软件工程
请编写一个函数jsValue(int m,int k,int xx[])
请编写一个函数jsValue(int m,int k,int xx[]),该函数的功能是:将大于整数m且紧靠m的k个素数存入数组xx传回。
最后调用函数writeDat()读取10组数据,分别得出结果且把结果输出到文件out.dat中。
部分源程序存在文件prog1.c中。
例如:若输入17 5 则应输出:19,23,29,31,37。 ...
https://www.eeworm.com/dl/652/110579.html
文章/文档
int trace (int i, int j, int low, IMAGE im,IMAGE mag, IMAGE ori) float gauss(float x, float sigma) f
int trace (int i, int j, int low, IMAGE im,IMAGE mag, IMAGE ori) float gauss(float x, float sigma) float dGauss (float x, float sigma) float meanGauss (float x, float sigma) void hysteresis (int high, int low, IMAGE im, IMAGE mag, IMAGE oriim) void canny (float s, IMAGE im, IMAGE ...
https://www.eeworm.com/dl/532/285422.html
书籍源码
void III_hufman_decode(struct Granule *gr,int part2_start, int freqline[SBLIMIT][SSLIMIT]) {
void III_hufman_decode(struct Granule *gr,int part2_start,
int freqline[SBLIMIT][SSLIMIT])
{
unsigned int reg1, reg2,i
unsigned int part3_length = part2_start + gr->part2_3_length
unsigned used
int h,*f=&freqline[0][0]
if(gr->window_switching_flag &&
gr->block_ty ...