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

搜索资源列表

  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. 3

    0下载:
  2. CreateSemaphore #include <stdlib>
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:1522
    • 提供者:影子
  1. stdlib

    0下载:
  2. 这是一个源码,用于键盘控制
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:1484
    • 提供者:huangsong
  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. wuziqi

    0下载:
  2. 五子棋小游戏#include<stdlib.h> #include<time.h> #include<stdio.h> #include<conio.h> int chess[169]={0} /*棋盘*/ struct chess_t/*作为辅助,即是作为建意*/ { char attack /*攻防用的,0表示守,1表示攻*/ int j /*作为优先级用*/ }chess_a[169]
  3. 所属分类:游戏

    • 发布日期:2008-10-13
    • 文件大小:2382
    • 提供者:庄斌
  1. 9

    0下载:
  2. 操作系统课程设计_进程调度演示源程序 #include \"stdio.h\" #include \"stdlib.h\" #include \"string.h\" typedef struct node { char name[10] /*进程标识符*/ int prio /*进程优先数*/ int round /*进程时间轮转时间片*/ int cputime /*进程占用CPU时间*/ int needtime /*进程到完成
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:2366
    • 提供者:wjx
  1. C++yuandaima

    0下载:
  2. #define N 200 #include <graphics.h> #include <stdlib.h> #include <dos.h> #define LEFT 0x4b00 #define RIGHT 0x4d00 #define DOWN 0x5000 #define UP 0x4800 #define ESC 0x011b
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:59616
    • 提供者:wuziyang
  1. cpdu

    0下载:
  2. 简单最短寻道跟电梯算法,用C++编译 #include \"stdio.h\" #include \"stdlib.h\" #include <iostream.h>
  3. 所属分类:其他嵌入式/单片机内容

    • 发布日期:2008-10-13
    • 文件大小:7911
    • 提供者:屈辰子
  1. 魔方阵的问题求解

    0下载:
  2. #include"stdio.h" #include"stdlib.h" int main() { int i ,j,a[100][100],n,k,flag=1; while(scanf("%d",&n)!=EOF&&(n%2!=0)) { for(i=0;i<n;i++) for(j=0;j<n;j++) a[i][j]=0; j=n/2; a[0][j]=1; i=0
  3. 所属分类:C#编程

    • 发布日期:2008-11-26
    • 文件大小:542
    • 提供者:gdcjh12
  1. 词法分析程序(编译原理)

    2下载:
  2. 用C语言写的词法分析程序 #include "stdio.h" #include"string.h" #include "stdlib.h" FILE *fp; char filename[20]; char token[100]; int m=0; char getch() { char ch; ch=fgetc(fp); return ch; } char getbc
  3. 所属分类:其它源码

    • 发布日期:2009-04-29
    • 文件大小:1218
    • 提供者:zhimoai
  1. 白噪声随机数的产生

    0下载:
  2. #include<stdio.h> #include<stdlib.h> #include<math.h> #define E 6 #define D 1 double N() { double n=0;int i; for(i=0;i<12;i++) n+=(double)rand()/RAND_MAX; n=(n-E)/sqrt(D); return n; } void main() {
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-11-13
    • 文件大小:267
    • 提供者:weeklyjames
  1. file使用fstream的getline()方法

    0下载:
  2. file使用fstream的getline()方法,具体可以看CB的\Examples\StdLib目录下的例子fstream.cpp ,file使用fstream的getline()方法,具体可以看CB的\Examples\StdLib目录下的例子fstream.cpp
  3. 所属分类:文件操作

    • 发布日期:2017-03-27
    • 文件大小:223864
    • 提供者:llw
  1. yy.rar

    0下载:
  2. 求用分支限界算法解决旅行商问题的源程序,#include <stdio.h> #include <stdlib.h> #include <math.h> #define TRUE (1) #define FALSE (0) #define MAX_CITIES (10) #define INFINITY (999) #define I INFINITY ,Seeking with branch and bound algorithm t
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:3363
    • 提供者:mermaid61218
  1. I2C

    0下载:
  2. I2C #include "stm32f10x.h" #include <stdlib.h> #include "stm32_eval_i2c_tsensor.h" #include "stm32_eval.h" #ifdef USE_STM32100E_EVAL #include "stm32100e_eval_lcd.h" #elif defined USE_STM3210E_EVAL #include "stm3210e_eval_lc
  3. 所属分类:Embeded Linux

    • 发布日期:2017-03-24
    • 文件大小:45040
    • 提供者:宋府明城
  1. BP

    0下载:
  2. 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 //隐层神经元数目
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-31
    • 文件大小:2753
    • 提供者:梅汉文
  1. pic_ccs

    0下载:
  2. TI公司的CCS一些常用的函数库 ,比较好的资料,里面有一些程序比较基本,对于初学者规范程序编写,理论用于实践,有一定参考价值-TI' s CCS library of some commonly used, relatively good information, there are some basic procedures, procedures for the preparation of norms for the beginners, theory for practice,
  3. 所属分类:DSP program

    • 发布日期:2017-03-29
    • 文件大小:294980
    • 提供者:冯晓东
  1. ADTest

    0下载:
  2. 6410 ADC测试 #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/ioctl.h> #include <fcntl.h> #include <linux/fs.h> #incl
  3. 所属分类:Linux-Unix program

    • 发布日期:2016-12-22
    • 文件大小:64512
    • 提供者:xiankongyijue
« 1 23 4 5 6 7 8 9 »
搜珍网 www.dssz.com