代码搜索:MyStack
找到约 249 项符合「MyStack」的源代码
代码结果 249
www.eeworm.com/read/119796/6082269
c start.c
#include "stddefs.h"
#include "arch_ppc.h"
ulong myStack[512];
__eabi()
{
}
start()
{
char **argv;
int argc;
/* Adjust the stack pointer to be at the top of the myStack array.
www.eeworm.com/read/170239/5406134
c start.c
#include "stddefs.h"
#include "arch_ppc.h"
ulong myStack[512];
__eabi()
{
}
start()
{
char **argv;
int argc;
/* Adjust the stack pointer to be at the top of the myStack array.
www.eeworm.com/read/276695/10714781
cpp main.cpp
#include "seqstack.h"
void main()
{
Seqstack mystack;
float a=5.5;
int i;
cout
www.eeworm.com/read/453849/7406647
cpp 主函数.cpp
#include
#include
#include"SeqStack.h"
void main()
{
SeqStackMyStack;
char str[200];
cout
www.eeworm.com/read/453849/7406650
cpp 开括号与比括号的匹配.cpp
#include
#include
#include
#include"SeqStack.h"
void main()
{
SeqStackMyStack;
char str[200];
cout
www.eeworm.com/read/196478/8089328
java trainmover.java
/**
* TrainMover.java
* @version 1.0.0
* @author Hao Chen
* 0236407
*/
/**
* This is a program which simulates this train switching using one or more instances of
* the MyStack class.
www.eeworm.com/read/243219/12954642
c 2-1.c
#include
#include
#include
typedef int DataType
#include"LQueue.h"
#include"LSNode.h"
int main()
{
int n, car, time, sumStack, sumQueue, x;
char ch,
LSN
www.eeworm.com/read/322707/13370233
java example11_3.java
/* 创建堆栈 */
import java.util.*;
class Example11_3
{
public static void main(String args[])
{
//构造二个堆栈
Stack mystack1 = new Stack();
Stack mystack2 = new Stack();
// 用push(
www.eeworm.com/read/263399/11364692
cpp main.cpp
#include "seqstack.h"
void main()
{
Seqstack mystack;
float a=5.5;
int i;
cout
www.eeworm.com/read/157086/11740193
java textstack2.java
//Stack class that use the length array menber
class Stack{
private int stck[];
private int tos;
Stack(int size){
stck=new int[size];
tos=-1;
}
void push (int item){
if(tos==stck.length-1)
S