代码搜索:MyStack
找到约 249 项符合「MyStack」的源代码
代码结果 249
www.eeworm.com/read/110455/6164221
java palindrome.java
import java.io.*;
import java.util.*;
public class Palindrome
{
public static void main (String[] args)
{
String s = "";
System.out.print("please enter a string:");
try
{
Buffer
www.eeworm.com/read/486428/6532669
txt calculator.txt
java计算器,带图形用户界面,能够在输出显示屏上显示所输入的式子,并且能够进行4则混和运算。
//HTML
//APPLET
import java.util.*;
import java.awt.*;
import j
www.eeworm.com/read/486244/6538916
cpp train.cpp
// DS_03.cpp : Defines the entry point for the console application.
//
//#include "stdafx.h"
#include
#include
#include
#include
using namespace std;
/
www.eeworm.com/read/484317/6585592
txt java.txt
//HTML
//APPLET
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import
www.eeworm.com/read/483217/6601362
java locktest.java
package day20;
public class LockTest {
public static void main(String[] args) {
MyStack stack=new MyStack(20);
Thread t1=new MyThreadA(stack);
Thread t2=new MyThreadB(stack);
t1.start
www.eeworm.com/read/483199/6611155
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/483199/6611158
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/401854/11546800
java suanshu.java
public class Suanshu{
String houstr;
char frontstr;
Stack mystack;
int b;
public int compare(char op){
switch(op){
case'(':
case'#':return 1;
case'+':
case'-':return 2;
www.eeworm.com/read/157788/11662949
txt throwsioexception.txt
import java.io.*;
public class Stack
{
private char myStack[];
private int top;
private int len;
public Stack(int len)
{
myStack = new char[len];
this.len = len;
top = -1;
}
www.eeworm.com/read/337374/12373851
java teststack.java
public class TestStack{
public static void main(String args[]){
MyStack ms = new MyStack(10);
ms.push(11);
ms.push(22);
ms.push(33);
ms.push(44);
ms.push(55);
while(!ms.isEmpty(