CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - STDLIB.H

搜索资源列表

  1. BPprog

    0下载:
  2. BP算法最新C源程序, #include\"stdarg.h\" #include\"stdio.h\" #include\"stdlib.h\" #include\"math.h\" #include\"graphics.h\" #include\"conio.h\" #define IN 4 /*输入层的神经元个数*/ #define HID 13 /*隐含层的神经元个数*/ #define MOD 594 /*学习样本个数*/ #define OUT
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2958
    • 提供者:陈光华
  1. percept

    0下载:
  2. 感知器的VC实现#include \"percept.h\" #include \"stdio.h\" #include \"stdlib.h\"-perception of VC# include "percept.h" # include "stdio.h" # include "stdlib.h"
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:3396
    • 提供者:沈来信
  1. this-is-a-sound-code-of-image-enhancement-based-on

    0下载:
  2. 小波变换的C源代码 #define N0 128 #include \"stdio.h\" #include \"stdlib.h\" #include \"math.h\" #include \"string.-wavelet transform C source code # define N0 128 # include "stdio. h "# include" stdlib.h "# include" math.h
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:3630
    • 提供者:郑超
  1. ghgl

    0下载:
  2. #include <stdio.h> #include <stdlib.h> #define N 3 struct huowu {char num[10] char name[8] int money[3] int amount[3] }huo[N],temp -# include
  3. 所属分类:数据库编程

    • 发布日期:2008-10-13
    • 文件大小:1694
    • 提供者:liu hui
  1. quanpaixu

    0下载:
  2. 冒泡排序 直接选择排序 Shell排序 快速排序 归并排序 堆排序 直接插入排序基本算法 #include<iostream.h> #include<stdlib.h> #include<time.h> const int n=100000 typedef struct{ int key }RedType typedef struct{ RedType *r //r[n+1
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:720567
    • 提供者:zero
  1. 332658

    0下载:
  2. #include <stdio.h> #include <string.h> #include <stdlib.h> #include <malloc.h> #include <math.h> #include <conio.h> struct DuLNode{ struct DuLNode *prior int data struct DuLNode *next-# in
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2998
    • 提供者:黄宇
  1. linux_c_s

    0下载:
  2. 基于终端的订花系统_socket #include<stdio.h> #include<stdlib.h> #include<errno.h> #include<string.h> #include<sys/types.h> #include<netinet/in.h> #include<sys/socket.h> #include<sys/wait.h>
  3. 所属分类:Internet/网络编程

    • 发布日期:2008-10-13
    • 文件大小:3930
    • 提供者:xxf
  1. shu

    0下载:
  2. 1.[问题描述] 编写递归算法,计算二叉树中叶子结点的数目 [输入] 按照先序序列的顺序输入该结点的内容。其输入abd eh cf i g . [输出] 按中序序列输出,输出的结果为;dbheaficg并计算出二叉树中叶子结点的数目为4 [存储结构] 采用二叉表存储 [算法的基本思想] 采用递归方法建立和遍历二叉树。首先建立二叉树的根结点,然后建立其左右子树,直到空子树为止,中序遍历二叉树时,先遍厉左子树,后遍厉右子树,最后访问根结点。根据左右子树的最后一个
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-15
    • 文件大小:8133
    • 提供者:Demonic
  1. chazhao

    0下载:
  2. [问题描述] 在二叉排序树中查找关键字为KEY的记录 [输入] 有序表输入要查找元素的关键字 [输出] 查找成功是即可显示查找成功 #include <stdlib.h> #include <stdio.h> typedef int KeyType typedef struct{ -[Problem Descr iption] Binary Tree ranking keyword search for the rec
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-15
    • 文件大小:13646
    • 提供者:Demonic
  1. process

    0下载:
  2. #include <string.h> #include <fstream.h> #include <stdio.h> #include <stdlib.h> #define FINISH 0 //完成状态 #define RUNNING 1 //运行状态 #define READY 2 //就绪状态 #define WAITIO 3 //io等待状态 #define WAITREAD 4//读写等待状态
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:2397
    • 提供者:鹰隼
  1. LinuxUART

    0下载:
  2. linux 下串口编程 #include <stdio.h> /*标准输入输出定义*/ #include <stdlib.h> /*标准函数库定义*/ #include <unistd.h> /*Unix标准函数定义*/ #include <sys/types.h> /**/ #include <sys/stat.h> /**/ #include <fcntl.h> /*文件控制定义*/ #inc
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:5289
    • 提供者:Edward
  1. debugmalloc

    0下载:
  2. #include <stdlib.h> #include <string.h> #include <stdio.h> //#include <iostream> #include "debugmalloc.h" #include "dmhelper.h" /*Define the macro */ #define ALIGN 8 #define FENCE 0xDEADBEEF #define HE
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-21
    • 文件大小:2924
    • 提供者:liucj
  1. framebuffer

    0下载:
  2. 帧缓冲#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> #include <unistd.h> #include <fcntl.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <
  3. 所属分类:Linux-Unix program

    • 发布日期:2016-01-27
    • 文件大小:1471
    • 提供者:hjintian
  1. test

    0下载:
  2. #include "windows.h" #include "stdlib.h" #include "string.h" long WINAPI WndProc(HWND hWnd,UINT iMessage,UINT wParam,LONG lParam)
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:1007
    • 提供者:dan
  1. serial

    0下载:
  2. include <stdio.h> /*标准输入输出定义*/ #include <stdlib.h> /*标准函数库定义*/ #include <unistd.h> /*Unix标准函数定义*/ #include <sys/types.h> /**/ #include <sys/stat.h> /**/ #include <fcntl.h> /*文件控制定义*/ #include <termio
  3. 所属分类:Communication-Mobile

    • 发布日期:2017-04-05
    • 文件大小:9535
    • 提供者:nameblue
  1. cc

    0下载:
  2. 分析的是实例 #include<stdio.h> #include<stdlib.h> typedef struct BST* tree_pointer //定义数据类型 typedef struct BST{ int key tree_pointer left tree_pointer right }BST tree_pointer CreateBST(tree_pointer root, int data)
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:73043
    • 提供者:林明
  1. firm

    0下载:
  2. Bluetooth xfu flash #include <sys/stat.h> #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <unistd.h> #include <fcntl.h> #include <err.h> #include <string.h> #inclu
  3. 所属分类:Sniffer Package capture

    • 发布日期:2017-03-23
    • 文件大小:5500
    • 提供者:ulego
  1. c-P-P-lexical-analysis

    0下载:
  2. c++词法分析很简单的代码#include<iostream.h> #include<fstream.h> #include<stdlib.h> #include<stdio.h> #include<string.h> #include<conio.h> #include<process.h> /*头文件*/ -c++ lexical analysis is very simple c
  3. 所属分类:其他小程序

    • 发布日期:2017-03-21
    • 文件大小:2853
    • 提供者:李亚茹
  1. stdlib

    1下载:
  2. visual studio 2005 stdlib.h 文件 如果你的文件不小心毁坏了。。可以用这个-visual studio 2005 stdlib.h file
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-02
    • 文件大小:7511
    • 提供者:t
  1. stdlib

    0下载:
  2. wchar_t is required in stdlib.h according to POSIX. note that defining __need_wchar_t prevents stddef.h to define all other symbols it does normally.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-15
    • 文件大小:5681
    • 提供者:vounaiher
« 12 3 4 5 6 7 »
搜珍网 www.dssz.com