原文 http://hi.baidu.com/fightiger/blog/item/ba69a434f36e18add1a2d350.html 用户对应用程序经常有这样的要求:要求它能记住它的settings,比如窗口大小,位置,一些别的设置,还有一个经常用的,就是recent files,等等这 ...
分类:
其他 时间:
2017-02-03 10:49:15
收藏:
0 评论:
0 赞:
0 阅读:
287
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. For example, given the following ma ...
分类:
其他 时间:
2017-02-03 10:48:53
收藏:
0 评论:
0 赞:
0 阅读:
181
《如我西沉》——全职高手 叶修角色同人歌原曲:Last Of The Wilds作词:江岸策划:花君演唱:裂天 特曼 小魂【裂天】谁一身白苍 坐在了巨人肩膀跌撞着过城 隔一道街的信仰是沉入海底 却仍灼眼的微光 周遭太久的缺氧要把人埋葬 可若相比起 黑夜里莫名荒唐 海边有个人叼着烟轻轻跟唱 极夜的双眼 ...
分类:
其他 时间:
2017-02-03 10:48:09
收藏:
0 评论:
0 赞:
0 阅读:
206
软件=程序+软件工程 软件企业=软件+商业模式 软件是由多人合作完成的,其发展有4个阶段:1、玩具阶段 2、业余爱好阶段3、探索阶段4、成熟的产业阶段。它分为3种:1、系统软件(操作系统、设备驱动程序、工具软件等) 2、应用软件(用户使用它们来完成工作) 3、恶意软件(软件病毒等) 软件开发过程中有 ...
分类:
其他 时间:
2017-02-03 10:47:57
收藏:
0 评论:
0 赞:
0 阅读:
260
1.充分理解客户需求,在整个设计过程中都要考虑可行性,在可行的基础上尽量靠近用户需求 2.确定项目实现目标 3.划分确定项目业务模块并判断其可行性,与客户反复确认商讨,保证认知一致 4.确定各业务模块流程,与客户反复确认商讨,保证认知一致 4.1.确定各业务模块是否有需要与其他系统衔接,如果有则确定 ...
分类:
其他 时间:
2017-02-03 10:47:29
收藏:
0 评论:
0 赞:
0 阅读:
453
unbuntu下卸载QT方法一:you can remove it like this, those developers should add this somewhere ! like next to the download textlinuxmint ~ # cd /optlinuxmint ...
分类:
系统服务 时间:
2017-02-03 10:47:17
收藏:
0 评论:
0 赞:
0 阅读:
285
236. Lowest Common Ancestor of a Binary Tree 236. Lowest Common Ancestor of a Binary Tree Total Accepted: 82386 Total Submissions: 280908 Difficulty: ...
分类:
其他 时间:
2017-02-03 10:46:56
收藏:
0 评论:
0 赞:
0 阅读:
350
windows下Qt5.2 for Android开发环境配置 1.下载安装Qt 5.2.0 for Android (Windows 32-bit) http://qt-project.org/downloads 2.打开Qt Creator,打开帮助,输入android,找到官方说明,按照教程一 ...
分类:
移动平台 时间:
2017-02-03 10:46:44
收藏:
0 评论:
0 赞:
0 阅读:
327
原题链接在这里:https://leetcode.com/problems/sort-characters-by-frequency/ 题目: Given a string, sort it in decreasing order based on the frequency of characte ...
分类:
其他 时间:
2017-02-03 10:46:28
收藏:
0 评论:
0 赞:
0 阅读:
246
1312 连续自然数和 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold 1312 连续自然数和 1312 连续自然数和 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold 时间限制: 1 s 空间限制: 128000 KB 题目等级 : ...
分类:
其他 时间:
2017-02-03 10:46:12
收藏:
0 评论:
0 赞:
0 阅读:
269
1.开闭原则 2.里氏代换原则 一般而言,违反里氏代换原则的,也违背了“开—闭”原则,反之则不一定成立。 3.依赖倒转原则 4.合成/聚合复用原则 5.接口隔离原则 6.迪米特法则 ...
分类:
其他 时间:
2017-02-03 10:45:59
收藏:
0 评论:
0 赞:
0 阅读:
283
正常情况下如果切换了eclipse的workspace后,需要重新配置eclipse,但是可以将原工作目录中的.metadata/.plugins/org.eclipse.core.runtime拷贝到新的的workspace目录下,覆盖现有的即可,其中.metadata/.plugins/org. ...
分类:
系统服务 时间:
2017-02-03 10:45:42
收藏:
0 评论:
0 赞:
0 阅读:
207
串口、TCP、UDP传输中文字符时,先将字符串转内码。客户端接收到数据后,将内码转为字符串就OK了 QByteArray CommonFunction::strToInterCode(constQString &str)//字符串转内码 http://blog.csdn.net/liuguangzh ...
分类:
其他 时间:
2017-02-03 10:45:24
收藏:
0 评论:
0 赞:
0 阅读:
693
Given a binary tree, find the subtree with maximum average. Return the root of the subtree. Notice LintCode will print the subtree which root is your ...
分类:
其他 时间:
2017-02-03 10:44:48
收藏:
0 评论:
0 赞:
0 阅读:
510
20. Valid Parentheses 20. Valid Parentheses Total Accepted: 167254 Total Submissions: 517330 Difficulty: Easy Contributors: Admin Given a string conta ...
分类:
其他 时间:
2017-02-03 10:44:27
收藏:
0 评论:
0 赞:
0 阅读:
203
1. 首先要理解Boost和Gradient Boost。 前者是在算法开始时候,,为每一个样本赋上一个相等的权重值,也就是说,最开始的时候,大家都是一样重要的。在每一次训练中得到的模型,会使得数据点的估计有所差异,所以在每一步结束后,我们需要对权重值进行处理,而处理的方式就是通过增加错分类点的权重 ...
分类:
其他 时间:
2017-02-03 10:43:47
收藏:
0 评论:
0 赞:
0 阅读:
170
原文http://mobile.51cto.com/symbian-272552.htm 本文介绍的是Qt 字库移植并能显示中文,需要的字体库文件,一般是多个。具体移植那一个,看你使用的字库是什么了,先来看内容。 AD: 原文http://mobile.51cto.com/symbian-27255 ...
分类:
其他 时间:
2017-02-03 10:43:12
收藏:
0 评论:
0 赞:
0 阅读:
238
模态对话框就是指在子对话框弹出时,焦点被强行集中于该子对话框,子对话框不关闭,用户将无法操作其他的窗口。非模态相反,用户仍然可以操作其他的窗口,包括该子对话框的父对话框。 如果从线程角度来讲,模态对话框实际上是线程阻塞的,也就是子对话框是一个线程,但是在创建这个子线程之后,父窗口就阻塞了;模态对话框 ...
分类:
其他 时间:
2017-02-03 10:42:59
收藏:
0 评论:
0 赞:
0 阅读:
196
138. Copy List with Random Pointer 138. Copy List with Random Pointer Total Accepted: 95300 Total Submissions: 357941 Difficulty: Medium Contributors: ...
分类:
其他 时间:
2017-02-03 10:42:41
收藏:
0 评论:
0 赞:
0 阅读:
221
Given the root and two nodes in a Binary Tree. Find the lowest common ancestor(LCA) of the two nodes.The lowest common ancestor is the node with large ...
分类:
其他 时间:
2017-02-03 10:42:19
收藏:
0 评论:
0 赞:
0 阅读:
230