代码搜索:InitStack

找到约 954 项符合「InitStack」的源代码

代码结果 954
www.eeworm.com/read/390847/8437748

h sqstack.h

#include"sj.h" /*调用自定义库函数*/ typedef struct { ElemType elem[MAXSIZE]; int top; }SeqStack; /*定义顺序栈结构*/ void InitStack_Sq(
www.eeworm.com/read/181921/9226494

c 后缀表达式求值1.c

#include #include typedef struct stacknode { int data; struct stacknode *next; }stacknode; typedef struct linkstack { stacknode *top; }linkstack; void initstack(li
www.eeworm.com/read/181921/9226743

c 后缀表达式求值1.c

#include #include typedef struct stacknode { int data; struct stacknode *next; }stacknode; typedef struct linkstack { stacknode *top; }linkstack; void initstack(li
www.eeworm.com/read/181921/9226761

txt 后缀表达式求值1.txt

#include #include typedef struct stacknode { int data; struct stacknode *next; }stacknode; typedef struct linkstack { stacknode *top; }linkstack; void initstack(li
www.eeworm.com/read/111332/15514462

cpp sq.cpp

#include "List\StackQueue.h" void main() { // StackType stack; StackLType *stack; printf("empty stack!\n"); InitStack(&stack); printf("empty stack:%d\n",Empty(&stack
www.eeworm.com/read/208858/15234033

c no_os.c

#include "plasma.h" #define MemoryRead(A) (*(volatile unsigned int*)(A)) #define MemoryWrite(A,V) *(volatile unsigned int*)(A)=(V) int InitStack[128]; //used by boot.asm void putchar(int value) {
www.eeworm.com/read/113074/15470657

h stack.h

#if !defined (STACK_H) #define STACK_H // (c) Bartosz Milewski 2000 const int initStack = 1; class IStack { friend class StackSeq; // give it access to private members public: IStack ();
www.eeworm.com/read/113074/15470749

h stack.h

#if !defined (STACK_H) #define STACK_H // (c) Bartosz Milewski 2000 const int initStack = 1; class IStack { friend class StackSeq; // give it access to private members public: IStack ();
www.eeworm.com/read/346831/11719108

s stackinit.s

;/* ;********************************************************************************************************* ;* 文件: StackInit.S ;* 描述: 初始化各种模式的堆栈指针. ;* 编写: 深思 (001-12345@sohu.com). ;***********
www.eeworm.com/read/167250/9974355

cpp sl.cpp

#include "d:\cpp\head.h" typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }LNode,*LinkStack; Status InitStack(LinkStack &S){ S=(LNode*)malloc(sizeof(LNode)