码迷,mamicode.com
首页 >  
搜索关键字:stack frame    ( 16930个结果
Dijkstra的双栈算术表达式求值
import java.util.Stack; import java.util.Scanner; public class Evaluate { public static void main(String[] args) { Stack ops=new Stack(); Stack vals=new Stack(); Scanner cin=new Scanner(Syste...
分类:其他好文   时间:2014-05-12 06:23:04    阅读次数:336
下压堆栈(链表实现)
import java.util.Iterator; import java.util.Scanner; public class Stack implements Iterable { private Node first;// 栈顶 private int N;// 元素数量 // 定义结点的嵌套类 private class Node{ Item item; Node nex...
分类:其他好文   时间:2014-05-11 13:20:22    阅读次数:257
Java编程中容易疏忽的知识点
(1)Frame与窗口事件 1.Window、Frame、Dialog和FileDialog都属于有边框容器,他们的父类为Window,但是Window本身属于无边框的,算是有边框容器的一个例外。 2.Frame可以作为一个Application的最外层容器,也可以被其他容器创建并弹出成为独立的.....
分类:编程语言   时间:2014-05-11 05:15:43    阅读次数:421
LeetCode--Reverse Integer
//#include #include #include //using namespace std; //const int MAXN=10; //int Stack[MAXN]; stack s; class Solution { public: int getNumber(int x) { //int lengthOfStack=0;...
分类:其他好文   时间:2014-05-10 04:45:29    阅读次数:231
程序员阿士顿的故事[zz]
程序员阿士顿的故事2011-03-19 21:37:51前几天有人在 Stack Exchange 上提了一个问题 How can a new programmer impress the software engineer (boss)?(作为新手程序员如何给软件工程师出身的老板留下好印象?),J...
分类:其他好文   时间:2014-05-10 00:00:32    阅读次数:583
cowboy-高性能简洁的erlang版web框架
那么Cowboy是什么呢?Cowboy is a small, fast and modular HTTP server written in Erlang.其定位非常明确:Cowboy aims to provide a complete HTTP stack in a small code ba...
分类:Web程序   时间:2014-05-09 23:06:24    阅读次数:411
layoutSubviews
layoutSubviews在以下情况下会被调用:1、init初始化不会触发layoutSubviews2、addSubview会触发layoutSubviews3、设置view的Frame会触发layoutSubviews,当然前提是frame的值设置前后发生了变化4、滚动一个UIScrollVi...
分类:其他好文   时间:2014-05-09 15:33:00    阅读次数:243
Frame Relay - 简介及基本配置
Frame Relay的简介和基本配置...
分类:其他好文   时间:2014-05-09 14:43:17    阅读次数:421
Leetcode: Valid Parentheses
没考虑到的情况有:input: [, expected: false; 语法上也犯了错误: 我定义的stack的泛型为char,泛型不能为primitive datatype,Primitive types such ascharcannot be used as type parameters i...
分类:其他好文   时间:2014-05-09 09:19:01    阅读次数:252
微机接口技术与汇编语言上机实验报告_汇编初步(intel8086)
实验环境:intel x386   一。要求:将3000H单元开始置数为00H-0FH SSTACK SEGMENT STACK DW 32 DUP(?) SSTACK ENDS CODE SEGMENT ASSUME CS:CODE, SS:SSTACK START: PUSH DS XOR AX, AX MOV DS, AX MOV SI, 3000H MOV CX...
分类:编程语言   时间:2014-05-09 06:33:53    阅读次数:372
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!