码迷,mamicode.com
首页 > 其他好文
Binary Tree Zigzag Level Order Traversal
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between). For example: Given binary ...
分类:其他好文   时间:2015-01-10 18:17:08    阅读次数:177
Heritage from father
Heritage from father Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131070/65535 K (Java/Others) Total Submission(s): 5178 Accepted Submission(s): 1837 Problem Description Famous Har...
分类:其他好文   时间:2015-01-10 18:18:11    阅读次数:196
【设计模式】面向对象小结——重写与重载
如果没有基本的抽象思想,将具有相同属性和功能的对象进行整合,那么也就没有面向对象技术,更不可能产生面向对象特点。所以,抽象是核心,是基本;如果没有封装、继承和多态,那么类与类、对象与对象、类与对象之间,就没有了联系,就不能实现对代码的重复利用,也就与面向过程没有区别了。所以,它们是必要元素,是特点;接口、泛型和委托,是其基本和特点的集中体现,使面向对象技术发扬光大。。...
分类:其他好文   时间:2015-01-10 18:18:33    阅读次数:297
git删除目录下的所有文件并提交
git删除指定目录下的 所有文件, 命令如下: 1 删除 删除命令列表: 'git rm' [-f | --force] [-n] [-r] [--cached] [--ignore-unmatch] [--quiet] [--] ... 强制删除.idea下的所有文件 git rm -fr .idea 2 注释 git commit -t "无用" 3...
分类:其他好文   时间:2015-01-10 18:16:43    阅读次数:247
再见,CSDN
再见,CSDN,此博客停止更新。博客已迁移,传送门:http://dbarobin.com...
分类:其他好文   时间:2015-01-10 18:16:11    阅读次数:170
RabbitMQ官网教程---发布/订阅
RabbitMQ官网教程---发布/订阅...
分类:其他好文   时间:2015-01-10 18:15:39    阅读次数:257
UVA, 11733 (kruscal,最小生成树)
Airports From:UVA, 11733 Submit Time Limit: 1000 MS         The government of a certain developing nation wants to improve transportation in one of its most inacces...
分类:其他好文   时间:2015-01-10 18:15:29    阅读次数:258
找猴王:15只猴子围成一圈从1报数到7的出局,最后谁是猴王。
第一种: package 找猴王; public class Test { public static void main(String[] args) { int n=15;//15只猴子 int m=7;//数到7的就出局 int count=1;//count为计报数的值,从1开始,7结束 int size=n;//size的值从15变到1,到1时就找到了猴王(每数到7...
分类:其他好文   时间:2015-01-10 18:16:46    阅读次数:183
Edit Distance
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.) You have the following 3 operations permitted on a word: a) Insert a character b) Delete a character c) Replace a...
分类:其他好文   时间:2015-01-10 18:15:43    阅读次数:181
九度OJ&北京航空航天大学2009机试题题解
题目一、jobdu1166:迭代求立方根 http://ac.jobdu.com/problem.php?pid=1166 题目描述: 立方根的逼近迭代方程是 y(n+1) = y(n)*2/3 + x/(3*y(n)*y(n)),其中y0=x.求给定的x经过n次迭代后立方根的值。 输入: 输入有多组数据。 每组一行,输入x n。 输出: 迭代n次后的立方根,...
分类:其他好文   时间:2015-01-10 18:14:58    阅读次数:267
九度OJ&北京航空航天大学2008机试题题解
题目一、jobdu1163:素数 http://ac.jobdu.com/problem.php?pid=1163 题目描述: 输入一个整数n(2 输入: 输入有多组数据。 每组一行,输入n。 输出: 输出所有从1到这个整数之间(不包括1和这个整数)个位为1的素数(素数之间用空格隔开,最后一个素数后面没有空格),如果没有则输出-1。 样例输入: 10...
分类:其他好文   时间:2015-01-10 18:14:25    阅读次数:208
hexo 解决代码块前后多余空行的问题
解决方案:github issue     通过修改hexo源码来解决:     文件:lib/util/highlight.js     将91行的: numbers += '' + (i + firstLine) + ''; content += '' + item + '';     改为: numbers += '' + (i + firstLine) + '\n'...
分类:其他好文   时间:2015-01-10 18:12:08    阅读次数:196
ural 1119 Metro dp水
点击打开链接 1119. Metro Time limit: 0.5 second Memory limit: 64 MB Many of SKB Kontur programmers like to get to work by Metro because the main office is situated quite close the statio...
分类:其他好文   时间:2015-01-10 18:10:42    阅读次数:246
Factorial Trailing Zeroes 172
题目描述:给出一个integer n,计算n!结尾0的个数题目分析:考虑暴力,计算n!统计最后面0的个数。先不说数字溢出,其次n是一个integer ,O(n)复杂度超时我们接着考虑,产生0的情况只有包含因子5的数乘以一个偶数会在结尾产生0(5*2,15*2,75*2),因为偶数的个数大于因子包含5...
分类:其他好文   时间:2015-01-10 18:09:03    阅读次数:162
表的创建与管理二(学习笔记)
修改表的结构DDL定义中对于数据库的操作主要有3种语法创建对象:CREATE 对象类型 对象名称….删除对象 DROP 对象类型 对象名称修改对象 ALTER 对象类型 对象名称创建表,并添加数据 --删除member表 DROP TABLE MEMBER PURGE; --创建member表CRE...
分类:其他好文   时间:2015-01-10 18:09:34    阅读次数:200
ME01 创建货源清单function
CALL FUNCTION 'ME_DIRECT_INPUT_SOURCE_LIST'Function module IDOC_INPUT_SRCLSTFUNCTION IDOC_INPUT_SRCLST.*"--------------------------------------------....
分类:其他好文   时间:2015-01-10 18:08:41    阅读次数:685
进制转换
#include#define M 2unsigned process(unsigned n){ static unsigned S=1; unsigned d,e; d=n/M; if(d==0) e=1; else { S*=M; e=M*process(d); } if (e==1) p...
分类:其他好文   时间:2015-01-10 18:10:16    阅读次数:221
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!