- (UIImage*) imageBlackToTransparent:(UIImage*) image
{
// 分配内存
const int imageWidth = image.size.width;
const int imageHeight = image.size.height;
size_t bytesPerRow = imageWidth...
分类:
移动开发 时间:
2015-04-02 19:03:13
阅读次数:
248
原创文章,欢迎转载!转载时务必保留:作者:jmppok ;出处http://blog.csdn.net/jmppok/article/details/44833545
1.applicationContext-secrity.xml配置...
分类:
编程语言 时间:
2015-04-02 19:01:52
阅读次数:
191
#include
using namespace std;
#define maxn 105
#define INF 0x7ffffff
int dp[maxn][maxn];
int Q[maxn];
int p, q;
int main()
{
while(~scanf("%d%d", &p, &q))
{
for(int i=1; i<=q; i++)...
分类:
其他好文 时间:
2015-04-02 19:01:30
阅读次数:
156
最近工作中遇到一个问题,想在某个文件的指定位置后面添加一个标志位,要求在shell脚本里实现。问题说明:想在sys_config.fex文本的某个字符串后面添加一个flag例如:sys_config.fex里有这么一段[nand_para]nand_use = 1要求在[nand_para]后面添加一个flag = 1,最后变成(不影响其他内容):[nand_para]flag = 1nand_u...
分类:
系统相关 时间:
2015-04-02 19:02:20
阅读次数:
198
Hat’s Words
Time Limit: 1000MS
Memory Limit: 32768KB
64bit IO Format: %I64d & %I64u
Submit Status
Description
A hat’s word is a word in the dictionary that is the con...
分类:
其他好文 时间:
2015-04-02 19:03:41
阅读次数:
186
原因:某个时间想对服务器上的zip中的某些文件进行修改
本来以为很简单的事情,在网上找了好些代码,结果效果都不是很理想。
实现对象:对各种类型的文件夹(包含子文件或子文件夹)
下面介绍一下自己综合网上代码自己写的
首先要倒入一个jar包:(零积分下载)
package com.tzx.test2;
import java.io.File;
import java...
分类:
编程语言 时间:
2015-04-02 19:01:09
阅读次数:
155
class Solution {
public:
vector postorderTraversal(TreeNode *root) {
vector res;
stack>s;
TreeNode *p = root;
while(p!=NULL||!s.empty())
{
while...
分类:
其他好文 时间:
2015-04-02 19:02:48
阅读次数:
117
JavaWeb-17
JDBC编程进阶2
一、自定义框架
习惯:搞工具类尽量写多些注释
开始制定框架
项目架构:
c3p0-config.xml
com.mysql.jdbc.Driver
jdbc:mysql://localhost:3306/day15
root
root...
分类:
数据库 时间:
2015-04-02 19:00:48
阅读次数:
285
class Solution {
public:
vector preorderTraversal(TreeNode *root) {
vector res;
stack s;
TreeNode * p = root;
while(p!=NULL||!s.empty())
{
while...
分类:
其他好文 时间:
2015-04-02 19:02:38
阅读次数:
131
/*
* touchScroll
* param:el,evt
* evt:{start:function(){},move:function(){},end:function(){}}
*/
(function(window,document,undefined){
var hasTouch = 'ontouchstart' in window,
hasPoi...
分类:
其他好文 时间:
2015-04-02 19:01:16
阅读次数:
157
class Solution {
public:
vector inorderTraversal(TreeNode *root) {
vector res;
stack s;
TreeNode * p = root;
while(p!=NULL||!s.empty())
{
while(...
分类:
其他好文 时间:
2015-04-02 19:01:33
阅读次数:
98
dubbo服务发布之后,我们可以利用telnet命令进行调试、管理。
Dubbo2.0.5以上版本服务提供端口支持telnet命令,下面我以Windows为例抛砖引玉一下:
1.连接服务
测试对应IP和端口下的dubbo服务是否连通,cmd命令如下
telnet localhost 20880
正常情况下,进入telnet窗口,...
分类:
Web程序 时间:
2015-04-02 19:01:06
阅读次数:
206
研发工程师、算法工程师、测试开发工程师、安全工程师、客户端开发工程师、前端开发工程师、用户体验研究专员、视觉设计师、交互设计师、数据分析师、产品经理
面向学生:2015年及以后毕业的在校生...
分类:
其他好文 时间:
2015-04-02 18:59:44
阅读次数:
262
数据库索引是为了增加查询速度而对表字段附加的一种标识。见过很多人机械的理解索引的概念,认为增加索引只有好处没有坏处。
这里想把之前的索引学习笔记总结一下:
首先明白为什么索引会增加速度,DB在执行一条Sql语句的时候,默认的方式是根据搜索条件进行全表扫描,遇到匹配条件的就加入搜索结果集合。如果我们对某一字段增加索引,查询时就会先去索引列表中一次定位到特定值的行数,大大减少遍历匹配的...
分类:
数据库 时间:
2015-04-02 19:00:34
阅读次数:
297
拓扑排序
拓扑排序是针对有向图进行的,拓扑排序有两个作用:(1)针对某种定义好的“小于”关系为结点排序;(2)判断一个有向图中是否存在有向环。我们可以利用DFS来完成拓扑排序。
下面是判断一个有向图g中是否含有有向环的代码:
#define N 100+10
int c[N], g[N][N];//利用二维数组g保存有向图
int n;//结点数,下标从0开始
bool toposort(...
分类:
编程语言 时间:
2015-04-02 18:59:12
阅读次数:
158