代码搜索:stdlib

找到约 10,000 项符合「stdlib」的源代码

代码结果 10,000
www.eeworm.com/read/356710/10222718

txt eras.txt

/* Copyright zmofun All rights reserved! http://zmofun.topcool.net 2000.1.14 */ #include #include #include #include
www.eeworm.com/read/355610/10254297

c 无向图.c

#include #include #define MaxSize 20 struct ArcNode { int adjvex; struct ArcNode *nextarc; }; struct Vnode { int data; struct ArcNode *firstarc; };
www.eeworm.com/read/280696/10298870

cpp btree.cpp

#include #include typedef char datatype; struct bitree { datatype data; struct bitree *lchild; struct bitree *rchild; }; void InitBTree(bitree *&BT) {
www.eeworm.com/read/162078/10337679

cpp use_link.cpp

#include #include #include class dblinkob { public: char info; dblinkob *next; dblinkob *previous; dblinkob() { info = 0; next =
www.eeworm.com/read/162078/10340954

c server.c

#define STRICT #include #include "server.h" #include #include #include // clients[] is a global array of
www.eeworm.com/read/425642/10342597

c mcmpfft.c

#include #include #include #include "msp.h" void mcmpfft(complex x[],int n,int isign) { /*--------------------------------------------------------------------- Ro
www.eeworm.com/read/425642/10342608

c msplfft.c

#include #include #include #include "msp.h" void msplfft(complex x[],int n,int isign) { /*---------------------------------------------------------------------- R
www.eeworm.com/read/354386/10359826

c nizhi2.c

#include # include #define stacksize 100 typedef int datatype; typedef struct { datatype data[stacksize]; int top; }seqstack; typedef struct node{
www.eeworm.com/read/161772/10375997

c system.c

/* Demonstrates the system() function. */ #include #include int main( void ) { /* Declare a buffer to hold input. */ char input[40]; while (1) {
www.eeworm.com/read/161507/10400219

c ccfunction0.c

#include #include "mex.h" #include "stdio.h" #include "stdlib.h" #include "matrix.h" //--------------------------------------------------------------------------- // 定义输入参数 #define M