代码搜索:MyStack

找到约 249 项符合「MyStack」的源代码

代码结果 249
www.eeworm.com/read/231535/14228003

c palindrome.c

/*文件Palindrome.c*/ #include #include #define MaxStackSize 80 /*定义堆栈的数据元素最大个数*/ #define MaxQueueSize 80 /*定义队列的数据元素最大个数*/ typedef char DataType; /*定义具体应用的数据类型Datatype*/ #include
www.eeworm.com/read/221812/14719704

cpp huiweng.cpp

#include #include #include #include "LinQueue.h" #include "LinStack.h" void HuiWen(char str[]) { LinStack myStack; LinQueue myQueue; i
www.eeworm.com/read/221812/14719721

cpp exam3-3.cpp

#include #include #include #include "LinQueue.h" #include "LinStack.h" void HuiWen(char str[]) //判断字符串str是否是回文 { LinStack myStack; LinQueue
www.eeworm.com/read/221812/14719723

cpp linstack.cpp

#include #include #include "LinStack.h" void main(void) { LinStack myStack; int test[] = {1,3,5,7,9}; int n = 5; for(int i = 0; i < n; i++)
www.eeworm.com/read/221812/14719773

cpp exam3-2.cpp

#include #include #include const MaxStackSize = 100; typedef char DataType; #include "SeqStack.h" void ExpIsCorrect(char exp[], int n) //判断有n个字符的字符串exp左右括
www.eeworm.com/read/221812/14719776

cpp seqstacktest.cpp

#include #include const int MaxStackSize = 100; //定义问题要求的元素数目的最大值 typedef int DataType; //定义具体问题元素的数据类型 #include "SeqStack.h" void main(void) { SeqStack myStack
www.eeworm.com/read/220892/14785139

java exam3_3.java

public class Exam3_3{ public static void huiWen(String str) throws Exception{ int n = str.length(); SeqStack myStack = new SeqStack(n); SeqQueue myQueue = new SeqQueue(n); for(int i
www.eeworm.com/read/220892/14785159

java exam3_2.java

public class Exam3_2{ public static void expIsCorrect(String[] exp,int n) throws Exception{ SeqStack myStack = new SeqStack(); for(int i = 0; i < n; i ++){ if((exp[i].equals(new Str
www.eeworm.com/read/220892/14785166

java seqstacktest.java

public class SeqStackTest{ public static void main(String[] args){ SeqStack myStack = new SeqStack(); int test[] = {1, 3, 5, 7, 9}; int n=5; try{ for(int i = 0; i < n; i
www.eeworm.com/read/118409/14873130

java ch6_e6_27.java

import java.io.*; import java.util.*; public class ch6_e6_27 { static Stack myStack; static { myStack = new Stack(); } public static void main(String ar