首页 > 其他
【Construct Binary Tree from Inorder and Postorder Traversal】cpp
题目:Given inorder and postorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.代码:/** * De...
分类:其他   时间:2015-05-16 13:10:09    收藏:0  评论:0  赞:0  阅读:219
NewsDaoImpl
package com.pb.news.dao.impl;import java.sql.CallableStatement;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatem...
分类:其他   时间:2015-05-16 13:09:58    收藏:0  评论:0  赞:0  阅读:377
NEWS-包名-baseTest-类名-ConfigManager
package baseTest;import java.io.IOException;import java.io.InputStream;import java.util.Properties;//读取配置文件public class ConfigManager { private stat.....
分类:其他   时间:2015-05-16 13:09:49    收藏:0  评论:0  赞:0  阅读:218
NewsServiceImpl
package com.pb.news.service.impl;import java.util.List;import com.pb.news.dao.NewsDao;import com.pb.news.entity.News;import com.pb.news.service.NewsSe...
分类:其他   时间:2015-05-16 13:09:18    收藏:0  评论:0  赞:0  阅读:226
级联删除的方法
1. exec("rd /s /q y12");命令删除目录$path='y12/aa/bb/cd/ff/aa/ee/dd';//mkdir($path,0777,true); exec("rd /s /q y12");2.运用递归函数实现级联删除用时直接调用既可以$path='y12/aa/bb/...
分类:其他   时间:2015-05-16 13:08:48    收藏:0  评论:0  赞:0  阅读:144
设计模式(十四)单例模式
懒汉,线程不安全public class Singleton { private static Singleton instance; private Singleton (){} public static Singleton getInstance() { ...
分类:其他   时间:2015-05-16 13:08:38    收藏:0  评论:0  赞:0  阅读:96
NEWS-包名-baseTest-类名-baeseDao
package baseTest;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql....
分类:其他   时间:2015-05-16 13:07:38    收藏:0  评论:0  赞:0  阅读:260
Cocos CSLoader Button
Node*?node?=?CSLoader::createNode("home.csb"); this->addChild(node); Button*?btnPlay?=?dynamic_cast<Button*>(node?->getChildByName("btnPlay")); Button*?btnPlay?=?static_cast<ui::Button*...
分类:其他   时间:2015-05-16 12:05:18    收藏:0  评论:0  赞:0  阅读:302
clientWidth,clientHeight,offsetWidth,offsetHeigh含义
网页可见区域宽:document.body.clientWidth;? 网页可见区域高:document.body.clientHeight;? 网页可见区域宽:document.body.offsetWidth;(包括边线的宽) 网页可见区域高:document.body.offsetHeight;(包括边...
分类:其他   时间:2015-05-16 12:05:09    收藏:0  评论:0  赞:0  阅读:200
svn设置提交忽略某些文件或文件夹
IDE: 客户端:
分类:其他   时间:2015-05-16 12:04:38    收藏:0  评论:0  赞:0  阅读:535
hadoop异常记录
下面遇到问题,提供了一些解决办法,希望有所帮助 1:Shuffle Error: Exceeded MAX_FAILED_UNIQUE_FETCHES; bailing-out? 这是reduce预处理阶段shuffle时获取已完成的map的输出失败次数超过上限造成的,上限默认...
分类:其他   时间:2015-05-16 12:04:19    收藏:0  评论:0  赞:0  阅读:137
POJ 3104 Drying (二分)
Drying Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 10098   Accepted: 2589 Description It is very hard to wash and especially to dry clothes in winter. Bu...
分类:其他   时间:2015-05-16 12:02:48    收藏:0  评论:0  赞:0  阅读:100
一元多项式相乘
#include typedef struct Node{ int coe; int exp; }node; int main() { int m,n; scanf("%d %d",&m,&n); node a[100],b[100]; for(int i=0;i<m;i++) { scanf("%d %d",&a[i].coe,&a[i].exp); } for(int...
分类:其他   时间:2015-05-16 12:02:38    收藏:0  评论:0  赞:0  阅读:86
2014 ACM 上海现场赛B,I,J && UVALive7146 7147 7139
2014最难赛区7146 贪心这道题是考验STL的. 我们按照一个顺序排序(我方攻击力升序,敌方防御力升序), 此时因为要全部歼灭,优先考虑如何干掉敌方防御力最高的,此时将所有攻击力比它高的我方都放入multiset中维护,然后选择一个”最合适”的匹配(如果有我方防御力大于此时敌方攻击力的元素就使用,若没有就牺牲.首要任务是全部歼灭,此时能够消灭这个敌方的人都已经在multiset中了,若能够不...
分类:其他   时间:2015-05-16 12:02:28    收藏:0  评论:0  赞:0  阅读:326
LeetCode Add and Search Word - Data structure design
题目 思路 前缀树,之前有一道LeetCode的题差不多的,我用之前的代码修改了一下即过。代码struct WordDictionary { char c; // sons for "abcdefghijklmnopqrstuvwxyz\0" struct WordDictionary * son[27]; };/** Initialize your data str...
分类:其他   时间:2015-05-16 12:01:48    收藏:0  评论:0  赞:0  阅读:209
当前最先进人脸识别方法简单介绍
最先进的人脸识别是当前facebook和香港科技大学的深度神经网络的人脸识别: 论文下载地址: facebook:DeepFace https://research.facebook.com/publications/480567225376225/deepface-closing-the-gap-to-human-level-performance-in-face-verification/...
分类:其他   时间:2015-05-16 12:01:38    收藏:0  评论:0  赞:0  阅读:171
Atom编辑器折腾记_(6)config.cson基础教程
号外 昨天,atom官方更新了atom的版本; 把之前内置到core的核心插件autocomplete替换成autocomplete plus,还做了许多修正,具体看这里 Notable Changes Atom now bundles Autocomplete Plus and the completion providers for HTML, CSS, Less, Sass, sni...
分类:其他   时间:2015-05-16 12:00:28    收藏:0  评论:0  赞:0  阅读:444
sh 脚本重启tomcat
添加war 包 并重启tomcat的脚本 echo "stop tomcat..." ps -ef|grep root|grep "tomcat"|grep java|grep -v grep|awk '{print $2}'|xargs -i kill -9 {} sleep 6 echo "stop tomcat done!" #判断根目录下是否有XXXX.war,如...
分类:其他   时间:2015-05-16 11:59:48    收藏:0  评论:0  赞:0  阅读:100
快速获取游客和用户IP的具体实现方法
废话不多说,贴代码! Get my IP whatsmyip My Real IP is: document.write(""); Sohu API  My IP Info: var cip = returnCitySN.cip; var cid = returnCitySN.cid; var cname = returnCitySN.cnam...
分类:其他   时间:2015-05-16 11:59:38    收藏:0  评论:0  赞:0  阅读:229
POJ3045 Cow Acrobats (贪心)
Cow Acrobats Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 3207   Accepted: 1264 Description Farmer John's N (1 <= N <= 50,000) cows (numbered 1..N) are pl...
分类:其他   时间:2015-05-16 11:59:28    收藏:0  评论:0  赞:0  阅读:298
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!