上一页 1 ··· 87 88 89 90 91 92 93 94 95 ··· 152 下一页
摘要: 题目 Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raini 阅读全文
posted @ 2017-06-07 09:08 cxchanpin 阅读(160) 评论(0) 推荐(0)
摘要: 话说在提交app到AppStore时出现了一些问题。网上找了一些资料,但不并具体。因此我做了一个总结,方便我以后遇到时可查询。也希望能帮助遇到这个问题的提供解决方式。 ERROR ITMS-90022: "Missing required icon file. The bundle does not 阅读全文
posted @ 2017-06-07 08:25 cxchanpin 阅读(1777) 评论(0) 推荐(0)
摘要: Given a binary tree, return the postorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, 1 \ 2 / 3 return [3,2,1]. Note: Re 阅读全文
posted @ 2017-06-06 21:50 cxchanpin 阅读(438) 评论(0) 推荐(0)
摘要: 题目: 链接:点击打开链接 题意: 思路: dp[i][j]表示前i个箱子装j钱的材料可以得到的最大价值。 代码: #include<iostream> #include<cstdio> #include<cstring> using namespace std; #define MAXN 1000 阅读全文
posted @ 2017-06-06 20:20 cxchanpin 阅读(195) 评论(0) 推荐(0)
摘要: Oracle字符乱码、数据越界訪问典型Bug分析前言: 作为乙方,在甲方客户那里验收阶段发现两个诡异Bug。下面就问题来源、问题根因、解决方式、怎样避免做具体描写叙述。一、Bug1:Oracle读写字符乱码。1、问题来源Oracle数据库监听http://blog.csdn.net/laoyang3 阅读全文
posted @ 2017-06-06 19:41 cxchanpin 阅读(591) 评论(0) 推荐(0)
摘要: 非常多地方都会须要用到唯一标志。 比方: 1. 我们相用一个设备的唯一标志当作用户id,特别是网络游戏,这样就能够省去注冊的麻烦。 2. 想把app相关的文件加密,密钥哪里来的?有些人可能会说hard code,可是hard code的key比較easy被破解。而去hard code密钥加密的文件能 阅读全文
posted @ 2017-06-06 17:58 cxchanpin 阅读(332) 评论(0) 推荐(0)
摘要: 援引:http://blog.csdn.net/zhanghefu/article/details/21284323 http://blog.csdn.net/cxf7394373/article/details/7195661 先看一下用法: 别忘了引入头文件。 这里我是得到 UserDatas 阅读全文
posted @ 2017-06-06 16:14 cxchanpin 阅读(699) 评论(0) 推荐(0)
摘要: Rightmost Digit Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 33161 Accepted Submission(s): 12 阅读全文
posted @ 2017-06-06 15:23 cxchanpin 阅读(150) 评论(0) 推荐(0)
摘要: 1 错误描写叙述 Procedure execution failed 2013 - Lost connection to MySQL server during query 2 错误原因 由错误描写叙述可知,是在查询的过程中,数据库失去连接 3 解决的方法 又一次连接数据库 1 错误描写叙述 由错 阅读全文
posted @ 2017-06-06 14:33 cxchanpin 阅读(541) 评论(0) 推荐(0)
摘要: 微信企业号的用户是须要验证的,因此能关注企业号的用户事实上就是已经通过验证的用户。但企业应用中打开一个网页,在这个网页中怎样依据微信用户的信息创建web应用中最长使用的session呢?微信用户怎样和web的session关联起来呢? 比如:一个应用。依据不同的人员,显示不同的内容,各个网页之间须要 阅读全文
posted @ 2017-06-06 13:33 cxchanpin 阅读(1615) 评论(0) 推荐(0)
上一页 1 ··· 87 88 89 90 91 92 93 94 95 ··· 152 下一页