码迷,mamicode.com
首页 >  
搜索关键字:blue stack    ( 11517个结果
下压堆栈(链表实现)
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
android--graphics
Color类Constants|____BLACK, BLUE, CYANMethods|____argb,rgb,alpha, red, green, blue|____parseColor
分类:移动开发   时间:2014-05-10 22:53:15    阅读次数:315
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
Linux 查看系统硬件信息(实例详解)
cpulscpu命令,查看的是cpu的统计信息.blue@blue-pc:~$lscpu Architecture:i686#cpu架构 CPUop-mode(s):32-bit,64-bit ByteOrder:LittleEndian#小尾序 CPU(s):4#总共有4核 On-lineCPU(s)list:0-3 Thread(s)percore:1#每个cpu核,只能支持一个线程,即不支持超线程 Core(s)perso..
分类:系统相关   时间:2014-05-09 21:21:28    阅读次数:579
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
数据结构——栈的类定义和实现
#include#include#include #include //使用库函数exit()using namespace std;templateclass Stack{ private: Type*data; //栈元素数组 int maxSize; /...
分类:其他好文   时间:2014-05-09 07:27:40    阅读次数:294
微机接口技术与汇编语言上机实验报告_汇编初步(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
UVA ShellSort
题目如下: Problem D: ShellSort He made each turtle stand on another one's back And he piled them all up in a nine-turtle stack. And then Yertle climbed up. He sat down on the pile. What a wonderful v...
分类:其他好文   时间:2014-05-09 06:20:44    阅读次数:396
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!