这是一个回收站*{margin:0px;padding:0px}#div1{width:220px;height:220px;border:3px solid #ffff00;position:absolute;left:250px;top:0px}#p...
分类:
其他好文 时间:
2015-08-09 07:11:52
阅读次数:
150
QuestionlinkGiven a binary tree, imagine yourself standing on therightside of it, return the values of the nodes you can see ordered from top to botto...
分类:
其他好文 时间:
2015-08-09 01:51:28
阅读次数:
129
1 import Tkinter2 top = Tkinter.Tk()3 top.mainloop()Tkinter的部件:Tkinter的提供各种控件,如按钮,标签和文本框,一个GUI应用程序中使用。这些控件通常被称为部件.目前有15种Tkinter的部件。我们提出这些部件以及一个简短的介绍,在...
分类:
编程语言 时间:
2015-08-09 01:50:06
阅读次数:
137
以下摘录《步骤吓得核心——软-core处理器的室内设计与分析》一本书1 IMMU结构 OR1200中实现IMMU的文件有or1200_immu_top.v、or1200_immu_tlb.v、or1200_spram.v,当中使用or1200_immu_top.v实现了IMMU模块,使用or1200...
分类:
其他好文 时间:
2015-08-08 22:43:58
阅读次数:
249
用栈来处理一下就好了。#include#include#include#include#includeusing namespace std;struct Mar{ int r,c;} mar[3000000];int n;char s[100000];int r,c,top,flag;Mar...
分类:
其他好文 时间:
2015-08-08 22:34:24
阅读次数:
144
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto stack.pop() -- Removes...
分类:
其他好文 时间:
2015-08-08 21:20:06
阅读次数:
156
IE6,7下li、img的间隙———————————————————在IE6,7下li本身没浮动,但是li内容有浮动的时候,li下边就会产生几px的间隙解决办法:
1.给li加浮动,给其父级清浮动
2.给li加vertical-align:top;
当IE6下最小高度问题,和 li的间隙问题共存的时候 给li加浮动img元素在本身没有浮动也没有宽高的时候,会距离父级底部有几px间隙...
分类:
Web程序 时间:
2015-08-08 18:20:30
阅读次数:
144
https://leetcode.com/problems/climbing-stairs/题目:You are climbing a stair case. It takesnsteps to reach to the top.Each time you can either climb 1 or...
分类:
其他好文 时间:
2015-08-08 16:13:47
阅读次数:
62
Implement the following operations of a stack using queues.push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top()...
分类:
其他好文 时间:
2015-08-08 14:54:53
阅读次数:
98
Find the total area covered by tworectilinearrectangles in a2Dplane.Each rectangle is defined by its bottom left corner and top right corner as shown ...
分类:
其他好文 时间:
2015-08-07 23:53:55
阅读次数:
169