搜索结果

找到约 40 项符合 stdlib 的查询结果

VC书籍 数学函数,所在函数库为math.h、stdlib.h、string.h、float.h

数学函数,所在函数库为math.h、stdlib.h、string.h、float.h
https://www.eeworm.com/dl/686/452268.html
下载: 102
查看: 1046

数值算法/人工智能 BP神经网络程序,C语言源代码 如下: #include "iostream.h" #include "iomanip.h" #include "stdlib.h" #include "ma

BP神经网络程序,C语言源代码 如下: #include "iostream.h" #include "iomanip.h" #include "stdlib.h" #include "math.h" #include "stdio.h" #include "time.h" #include "fstream.h" #define N 120 //学习样本个数 #define IN 3 //输入层神经元数目 #define HN 2 //隐层神经元数目 #define ON 2 //输出层神经元数目 #def ...
https://www.eeworm.com/dl/518/453103.html
下载: 40
查看: 1139

软件设计/软件工程 顺序栈的出栈、入栈、求栈长等基本操作 #include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typed

顺序栈的出栈、入栈、求栈长等基本操作 #include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typedef char DateType typedef struct
https://www.eeworm.com/dl/684/456766.html
下载: 170
查看: 1172

单片机编程 Keil C51开发系统基本知识3

Keil C51开发系统基本知识3 1. 1. 专用寄存器include文件例如8031、8051均为REG51.h其中包括了所有8051的SFR及其位定义,一般系统都必须包括本文件。2. 2. 绝对地址include文件absacc.h该文件中实际只定义了几个宏,以确定各存储空间的绝对地址。3. 3. 动态内存分配函数,位于stdlib.h中 4. 4. 缓冲区处理函数位于“string. ...
https://www.eeworm.com/dl/502/30654.html
下载: 199
查看: 1045

单片机编程 微型打印机的C语言源程序

微型打印机的C语言源程序:微型打印机的C51源程序#define uchar unsigned char#define uint unsigned int#include <reg52.h>#include <stdio.h>#include <absacc.h>#include <math.h>#include <string.h>#include <ctype.h>#include <stdlib.h>#define PIN XBYTE[0x8000]#define POUT XBYTE[0x9000]sbit PRINTSTB =P1^6;sbi ...
https://www.eeworm.com/dl/502/31505.html
下载: 171
查看: 1085

操作系统开发 vxworks libc库源代码

vxworks libc库源代码,标准C代码库实现 assert ctype locale math setjmp stdarg stdio stdlib string time
https://www.eeworm.com/dl/531/183756.html
下载: 76
查看: 1048

数据结构 1.[问题描述] 编写递归算法

1.[问题描述] 编写递归算法,计算二叉树中叶子结点的数目 [输入] 按照先序序列的顺序输入该结点的内容。其输入abd eh cf i g . [输出] 按中序序列输出,输出的结果为;dbheaficg并计算出二叉树中叶子结点的数目为4 [存储结构] 采用二叉表存储 [算法的基本思想] 采用递归方法建立和遍历二叉树。首先建立二叉树的根结点,然 ...
https://www.eeworm.com/dl/654/222659.html
下载: 88
查看: 1131

其他嵌入式/单片机内容 简单最短寻道跟电梯算法

简单最短寻道跟电梯算法,用C++编译 #include "stdio.h" #include "stdlib.h" #include <iostream.h>
https://www.eeworm.com/dl/687/336876.html
下载: 152
查看: 1042

Symbian S60 SDL is a Simple DirectMedia Layer adaptation for S60. SDL is a cross-platform multimedia library

S60 SDL is a Simple DirectMedia Layer adaptation for S60. SDL is a cross-platform multimedia library: Applications and libraries built on SDL can easily be ported to other operating systems. But S60 SDL does more than makes porting easy: S60 multimedia applications can be implemented without any kno ...
https://www.eeworm.com/dl/675/429119.html
下载: 78
查看: 1042

Linux/uClinux/Unix编程 两个链表的交集

两个链表的交集 #include<stdio.h> #include<stdlib.h> typedef struct Node{   int data;   struct  Node *next; }Node; void initpointer(struct Node *p){   p=NULL; } int  printlist(struct Node* head){   int flag=1;   head=head->next;   /*   因为标记1的地 ...
https://www.eeworm.com/dl/502540.html
下载: 1
查看: 46