码迷,mamicode.com
首页 > 2015年04月12日 > 全部分享
LeetCode Department Highest Salary
The Employee table holds all employees. Every employee has an Id, a salary, and there is also a column for the department Id. +----+-------+--------+--------------+ | Id | Name | Salary | Departme...
分类:其他好文   时间:2015-04-12 16:18:06    阅读次数:125
推桌子
推桌子 时间限制:1000 ms  |  内存限制:65535 KB 难度:3 描述The famous ACM (Advanced Computer Maker) Company has rented a floor of a building whose shape is in the following figure.  The floor has...
分类:其他好文   时间:2015-04-12 16:16:44    阅读次数:136
TC TCO2015R1A(Similars-状态压缩)
Problem Statement   Given two positive integers x and y, their similarity S(x, y) is defined as follows: To compute S(x, y) we count all d between 0 and 9, inclusive, such that both x and y...
分类:其他好文   时间:2015-04-12 16:16:23    阅读次数:119
ViewPagerIndicator 仿网易新闻tab或是知乎的发现中的tab
tab中经常有用到如网易新闻中那样的效果,要求能滑动,下面有指示,当tab页超出屏幕下面的内容也要跟着移动。 指示器的效果很多人都会用到TabPageIndicator,这里我们参考http://blog.csdn.net/lmj623565791/article/details/42160391 来写下自己的指示器。 如图: 总共有三个部分组成, HorizontalScroll...
分类:其他好文   时间:2015-04-12 16:18:41    阅读次数:607
使用joint.js 绘制图
使用joint.js 绘制图...
分类:Web程序   时间:2015-04-12 16:16:51    阅读次数:1061
提问:关于前景图像的编码问题
Question:          想咨询一下大家,现在完成了背景的提取和合成,关于前景问题,怎么存以及怎么传输的问题。              先给大家说一下,我暂时要做的吧,         思路 编码端 1、首先是提取三个视点各自的背景,和前景。将三个视点的背景合成大背景(中间用到分像素插值插整像素点)。 2、之后将大背...
分类:其他好文   时间:2015-04-12 16:16:02    阅读次数:126
hdu 1175 连连看
感觉这题挺水的,dfs 6000ms过 #include #include #define maxn 1000+5 using namespace std; int n,m; int mapp[maxn][maxn]; int visit[maxn][maxn]; int dir[4][2]={{0,1},{1,0},{0,-1},{-1,0}}; int sx,sy,ex,ey; int fl...
分类:其他好文   时间:2015-04-12 16:18:20    阅读次数:136
Eclipse下导出java程序可执行的jar包图片无法显示问题的一种解决方法
Eclipse下导出java程序可执行的jar包图片无法显示问题的解决方法: 说明:在eclipse中运行java程序的时候一切正常,可是当把jar包导出的时候却发现图片没法显示,这估计是java程序的各种配置和路径问题所导致,后来找到一种解决方法,供遇到这方面问题的学习java程序的鞋同参考:...
分类:编程语言   时间:2015-04-12 16:17:02    阅读次数:167
Zigbee入门之基础概念
大二就开始接触ZigBee硬件开发确实是一个不小的挑战,尤其是对一个计算机专业的同学而言。 最近开始写项目申请书,各种资料看的头都大了。为了以后更好的进行开发,这次记录了一些名词和解释 上位机和下位机   上位机是指可以直接发出操控命令的计算机,一般是PC/host computer/master computer/upper computer,屏幕上显示各种...
分类:其他好文   时间:2015-04-12 16:15:03    阅读次数:132
00-自测4. Have Fun with Numbers (20)
Notice that the number 123456789 is a 9-digit number consisting exactly the numbers from 1 to 9, with no duplication. Double it we will obtain 246913578, which happens to be another 9-digit number con...
分类:其他好文   时间:2015-04-12 16:16:59    阅读次数:128
设计模式学习-及实例源码和电子书下载
从本篇博文讲述23中设计模式,对每种设计模式给出实例代码。本篇博文最后都会给出代码下载地址。 本博文的参考书是《设计模式之禅》和《大话设计模式》这两本书。 但是《大话设计模式》一书并不是使用java语言编写的,所以对于初级Java或者有一定java基础的人看起来并不直观,特别是对于没有设计模式概念的同学看起来有点费劲,还有一个不好的地方是里面的每种模式的讲述都是基于一定的情景下讲述的,还有大鸟和...
分类:其他好文   时间:2015-04-12 16:17:41    阅读次数:149
E87EF1BE The largest dump device is too small
Last login: Fri Apr 10 15:15:39 CST 2015 on /dev/pts/1 from 10.229.64.114 ******************************************************************************* *                                           ...
分类:其他好文   时间:2015-04-12 16:15:37    阅读次数:304
Java-Tcp/Ip-CS时间问询UDP应用Demo
功能: 1.重复发请求包5次,直到成功 2.询问Server时间,发送Client时间 代码见: https://github.com/LiLane/JavaTcpIpSocketDemo 编译器:Eclipse Jdk:Jdk 8...
分类:编程语言   时间:2015-04-12 16:14:00    阅读次数:126
LeetCode(118) Pascal's Triangle (Java)
题目如下: Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5, Return [      [1],     [1,1],    [1,2,1],   [1,3,3,1],  [1,4,6,4,1] ] 我的代码:...
分类:编程语言   时间:2015-04-12 16:16:46    阅读次数:105
LeetCode OJ Consecutive Numbers
Write a SQL query to find all numbers that appear at least three times consecutively. +----+-----+ | Id | Num | +----+-----+ | 1 | 1 | | 2 | 1 | | 3 | 1 | | 4 | 2 | | 5 | 1 | | 6 | 2...
分类:其他好文   时间:2015-04-12 16:15:54    阅读次数:121
Android工具
最近两个工具用的比较多,就研究了下Android的工具,通过java谢了两个小工具: 1.一键解析apk、zip、rar、jar 这个工具可以一键解析apk里面的resource,包括drawable、layout、manifest,同时将里面的dex文件转成jar,可供jd_gui阅读,很强大!其余几种格式,只要里面有dex 文件,同样生成jar文件,并将生成的结果放在同级的resul...
分类:移动开发   时间:2015-04-12 16:14:55    阅读次数:136
网址URL中特殊字符转义编码
网址URL中特殊字符转义编码 字符    -    URL编码值 空格    -    %20 "          -    %22 #         -    %23 %        -    %25 &         -    %26 (          -    %28 )          -    %29 +         -    %2B ,...
分类:Web程序   时间:2015-04-12 16:14:16    阅读次数:214
1651条   上一页 1 ... 43 44 45 46 47 48 49 ... 98 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!