代码搜索:Stack

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

代码结果 10,000
www.eeworm.com/read/339385/12238844

s stack.s

;/****************************************Copyright (c)************************************************** ;** 广州周立功单片机发展有限公司 ;** 研
www.eeworm.com/read/339384/12239038

s stack.s

;/****************************************Copyright (c)************************************************** ;** 广州周立功单片机发展有限公司 ;** 研
www.eeworm.com/read/339384/12239054

o stack.o

www.eeworm.com/read/150980/12241281

cpp stack.cpp

/* 2005-03-2 ----------------------------------------------- 实验内容: 有n个字符的字符串,判断字符串是否中心对称。 如: xyzzyx和xyzyx都是中心对称的字符串 实验要求: 字符串放在单链表中,内容1由栈实现(存储结构自定) 并实现利用栈的入栈和出栈完成判断。 ------
www.eeworm.com/read/150980/12241283

exe stack.exe

www.eeworm.com/read/150980/12241285

txt stack.txt

/* 2005-03-2 ----------------------------------------------- 实验内容: 有n个字符的字符串,判断字符串是否中心对称。 如: xyzzyx和xyzyx都是中心对称的字符串 实验要求: 字符串放在单链表中,内容1由栈实现(存储结构自定) 并实现利用栈的入栈和出栈完成判断。 ------
www.eeworm.com/read/339239/12247979

m stack.m

function ST=stack(v) % 调用格式 % ST=stack 创建一个"空"堆栈对象. % ST=stack(v) 创建包含变量v的堆栈对象。 if nargin>1;error('Too many arguments.');end; if nargin==0 % 没有输入宗量情况 Q=queue; s.value=[];
www.eeworm.com/read/150781/12262609

h stack.h

/* crypto/stack/stack.h */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com).
www.eeworm.com/read/339038/12266581

h stack.h

/* File: stack.h * Desc: interface of a stack ADT using an opaque type. * Cristina Cifuentes * 13 Aug 1997 */ #ifndef _STACK_H_ #define _STACK_H_ typedef struct _Stack *Stack; Stack
www.eeworm.com/read/339038/12266583

c stack.c

/* File: stack.c * Desc: implementation of the Stack interface using opaque types. * Cristina Cifuentes * 13 Aug 1997 */ #include #include #include "stack.h" stru