Rss & SiteMap

爱心论坛 http://www.zqax.net/bbs/

自强爱心网是由一群热心公益事业的残疾人共同创办的非盈利性公益网站。网站以服务残疾人为宗旨,同时携手广大残疾人及社会各界爱心人士共同打造残疾人的网上家园!
共1 条记录, 每页显示 15 条, 页签: [1]
[浏览完整版]

标题:[公告]Java版本和C++版本简单Stack程序

1楼
小猴乖乖 发表于:2007/6/1 13:00:22
现在对C++学习了一段时间,把C++的特性和Java做比较有很强烈的快感:P

  自己写了两个版本的Stack:

  Java版本:

  源代码Stack.java

以下是引用片段:
  package org;
  public class Stack ...{
  public static class Link ...{
  protected Object data;
  protected Link next;
  public Link(Object data, Link next) ...{
  this.data = data;
  this.next = next;
  }
  }
  private Link head = null;
  public void push(Object data) ...{
  head = new Link(data, head);
  }
  public Object peek() ...{
  return head.data;
  }
  public Object pop() ...{
  if (head == null)
  return null;
  Object o = head.data;
  head = head.next;
  return o;
  }
  } 测试代码StackTest.java
  package org;
  import junit.framework.TestCase;
  public class StackTest extends TestCase ...{
  public void test1() ...{
  Stack s = new Stack();
  assertEquals(null, s.pop());
  s.push("a");
  s.push("b");
  assertEquals("b", s.peek());
  assertEquals("b", s.pop());
  assertEquals("a", s.pop());
  assertEquals(null, s.pop());
  }
  public void test2() ...{
  Stack s = new Stack();
  assertEquals(null, s.pop());
  s.push(new Integer(1));
  s.push(new Integer(2));
  assertEquals(2, ((Integer)s.peek()).intValue());
  assertEquals(2, ((Integer)s.pop()).intValue());
  assertEquals(1, ((Integer)s.pop()).intValue());
  assertEquals(null, s.pop());
  }
  }

  C++版本:

  源代码:

  Stack.cpp

以下是引用片段:
  #include  <fstream>
  #include  <iostream>
  #include  <string
  using namespace std;
  class Stack ...{
  struct Link ...{
  Link* next;
  void* data;
  Link(void* dat, Link* nxt) : data(dat) ,next(nxt) ...{}
  }*head;
  public :
  Stack() : head(0) ...{}
  void push(void* data) ...{
  head = new Link(data, head);
  }
  void* pop() ...{
  if (head == 0)
  return 0;
  void* object = head->data;
  Link* oldHead = head;
  head = oldHead->next;
  delete oldHead;
  return object;
  }
  void* peek() ...{
  return head ? head->data : 0;
  }
  };
  int main() ...{
  ifstream in("Stack.cpp");
  Stack text;
  string line;
  while(getline(in, line))
  text.push(new string(line));
  string* s;
  while((s = (string*)text.pop()) != 0) ...{
  cout << *s << endl;
  delete s;
  }
  }


共1 条记录, 每页显示 15 条, 页签: [1]

Copyright 2006 - 2022 © 自强爱心网 All Rights Reserved
工业和信息化部ICP/IP信息备案号:辽ICP备 11006191号-1
Powered By Dvbbs Version 8.3.0
Processed in .04688 s, 2 queries.