代码搜索:Switch
找到约 10,000 项符合「Switch」的源代码
代码结果 10,000
www.eeworm.com/read/154542/5636334
c usb_main.c
//-----------------------------------------------------------------------------
// USB_MAIN.c
//-----------------------------------------------------------------------------
// Copyright 2002 Cygna
www.eeworm.com/read/154542/5636445
c usb_main.c
//-----------------------------------------------------------------------------
// USB_MAIN.c
//-----------------------------------------------------------------------------
// Copyright 2005 Silic
www.eeworm.com/read/154542/5636535
c usb_main.c
//-----------------------------------------------------------------------------
// USB_MAIN.c
//-----------------------------------------------------------------------------
// Copyright (C) 2005 S
www.eeworm.com/read/154509/5636846
txt 算法 6.7.txt
算法 6.7
double value(BiTree T, float opnd[]){
// 对以T为根指针的二叉树表示的算术表达式求值,
// 操作数的数值存放在一维数组opnd中
if (!T) return 0; // 空树的值为0
if (T->data>=0) return opnd[T->data];
Lv = value(T->l
www.eeworm.com/read/154509/5636997
txt 算法 4.5.txt
算法 4.5
void transform(char suffix[], char exp[] ) {
// 从合法的表达式字符串exp求得其相应的后缀式字符串suffix,precede(a,b)
// 判别算符法的优先程度,当a的优先数≥b 的优先数时,返回 1,否则返回0
InitStack(S); Push(S, '#');
www.eeworm.com/read/154509/5637000
txt 算法 4.2.txt
算法 4.2
bool matching(char exp[] ) {
// 检验表达式中所含括弧是否正确嵌套,若是,则返回TRUE,否则返回FALSE.
// '#' 为表达式的结束符
int state = 1;
ch = *exp++;
while (ch != '#' && state) {
swi
www.eeworm.com/read/154509/5637086
txt 算法 6.7.txt
算法 6.7
double value(BiTree T, float opnd[]){
// 对以T为根指针的二叉树表示的算术表达式求值,
// 操作数的数值存放在一维数组opnd中
if (!T) return 0; // 空树的值为0
if (T->data>=0) return opnd[T->data];
Lv = value(T->l
www.eeworm.com/read/154509/5637240
txt 算法 4.5.txt
算法 4.5
void transform(char suffix[], char exp[] ) {
// 从合法的表达式字符串exp求得其相应的后缀式字符串suffix,precede(a,b)
// 判别算符法的优先程度,当a的优先数≥b 的优先数时,返回 1,否则返回0
InitStack(S); Push(S, '#');
www.eeworm.com/read/154509/5637243
txt 算法 4.2.txt
算法 4.2
bool matching(char exp[] ) {
// 检验表达式中所含括弧是否正确嵌套,若是,则返回TRUE,否则返回FALSE.
// '#' 为表达式的结束符
int state = 1;
ch = *exp++;
while (ch != '#' && state) {
swi
www.eeworm.com/read/153634/5646017
c psdemo.c
#include
#include
#include
#include
#include
#include
#include
#include