代码搜索:2
找到约 10,000 项符合「2」的源代码
代码结果 10,000
www.eeworm.com/read/425971/10300065
c bo2-2.c
/* bo2-2.c 单链表线性表(存储结构由c2-2.h定义)的基本操作(12个) */
Status InitList(LinkList *L)
{ /* 操作结果:构造一个空的线性表L */
*L=(LinkList)malloc(sizeof(struct LNode)); /* 产生头结点,并使L指向此头结点 */
if(!*L) /* 存储分配失败 */
www.eeworm.com/read/425971/10300132
c main2-2.c
/* main2-2.c 检验bo2-2.c的主程序(与main2-1.c很像) */
#include"c1.h"
typedef int ElemType;
#include"c2-2.h" /* 与main2-1.c不同 */
#include"bo2-2.c" /* 与main2-1.c不同 */
Status comp(ElemType c1,ElemType
www.eeworm.com/read/425971/10300153
h c2-2.h
/* c2-2.h 线性表的单链表存储结构 */
struct LNode
{
ElemType data;
struct LNode *next;
};
typedef struct LNode *LinkList; /* 另一种定义LinkList的方法 */
www.eeworm.com/read/280622/10301963
rc2 demo2.rc2
//
// DEMO2.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
/////
www.eeworm.com/read/162417/10306711
gif bg2_2.gif
www.eeworm.com/read/280596/10310504
bmp 图2-2.bmp
www.eeworm.com/read/425859/10313672
rc2 picturedemo2.rc2
//
// PICTUREDEMO2.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
www.eeworm.com/read/425859/10313808
rc2 printdemo2.rc2
//
// PRINTDEMO2.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
www.eeworm.com/read/162323/10314268
m exp2_2.m
clc
clear
more on
echo on
%为便于理解,在程序等执行过程中显示程序的表达式
a=16;b=12;
c=3;
d=4;
e=a+b-c*d
f=e/2
k=e\2
h=c^3
g=e+f+ ...
2+1-9
aa=sin(g)
abs(aa)
bb=2+3j
cc=conj(bb)
rbb=real(bb)
log(rbb)
www.eeworm.com/read/425753/10328196
rc2 2_1.rc2
//
// 2_1.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
///////