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:44:09
阅读次数:
176
问题:生成的dll文件QT无法静态/隐式调用 分析:调用的lib库可能是msvc编译的,而我用Qt调用,Qt默认编译器是minGW,两种编译器生成的函数名不一样,所以调用的时候你要用哪个函数,编译结果肯定显示这个函数未定义! 解决1:用VS2008生成DLL文件时,采用__declspec方式导出函 ...
分类:
其他好文 时间:
2017-02-03 10:43:33
阅读次数:
280
const_cast 用于去掉const属性,把const类型的指针变为非const类型的指针,如:const int *fun(int x,int y){} int *ptr=const_cast<int *>(fun(2.3)) dynamic_cast 该操作符用于运行时检查该转换是否类型安全 ...
分类:
编程语言 时间:
2017-02-03 10:42:46
阅读次数:
212
qt中文编码 来源:http://www.cublog.cn/u1/59481/showart_1947231.html 前些日子,被编码折磨了一段时间,总结一下Qt中的编码。 【Qt 编码简单实验】 首先,Qt中得QString 类对字符串进行了封装,其内部使用Unicode对传入的串进行编码。这 ...
分类:
其他好文 时间:
2017-02-03 10:42:13
阅读次数:
195
自定义QT窗口部件外观 重新定义Qt内置窗口部件的外观常用的方法有两种:一是通过子类化QStyle 类或者预定义的一个样式,例如QWindowStyle,来定制应用程序的观感;二是使用Qt样式表。 QStyle 类的使用 1. 准备必要的背景图片。在你想添加自定义风格的工程目录下新建一个文件夹“im ...
分类:
其他好文 时间:
2017-02-03 10:40:51
阅读次数:
249
上一次关注Qt Lighthouse是在6月初,可是现在都8月底了。时间真快... Lighthouse 是 QPA(Qt Platform Abstraction) 项目的名字,它使得将Qt移植到新的平台变得比较简单。尽管现在它已经完全融入到了Qt主干代码中,lighthouse作为独立项目已经不 ...
分类:
其他好文 时间:
2017-02-03 10:42:06
阅读次数:
523
1: void QTimer::singleShot ( int msec, QObject * receiver, const char * member ) [static] 样例: #include <QApplication> #include <QTimer> int main(int a ...
分类:
其他好文 时间:
2017-02-03 10:39:48
阅读次数:
559
1、如何在窗体关闭前自行判断是否可关闭答:重新实现这个窗体的closeEvent()函数,加入判断操作 void MainWindow::closeEvent(QCloseEvent*event){if (maybeSave()){writeSettings();event->accept();}e ...
分类:
其他好文 时间:
2017-02-03 10:40:24
阅读次数:
203
https://github.com/grijjy/DelphiRemotePushSender https://github.com/grijjy/DelphiScalableClientSockets https://github.com/grijjy/GrijjyFoundation Send ...
MySQL 获取所有分类和每个分类的前几条记录 比如有文章表 Article(Id,Category,InsertDate) 现在要用SQL找出每种类型中时间最新的前N个数据组成的集合 SELECT A1.* FROM Article AS A1 INNER JOIN (SELECT A.Categ ...
分类:
数据库 时间:
2017-02-03 10:36:42
阅读次数:
193
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1272 离散化后,用dp[i]表示向右,大于等于i这个数字的最大位置 dp[i] = max(dp[i + 1], dp[i]) #include <cstdio> #inc ...
分类:
其他好文 时间:
2017-02-03 10:38:25
阅读次数:
161
You are given a binary tree in which each node contains an integer value. Find the number of paths that sum to a given value. The path does not need t ...
分类:
其他好文 时间:
2017-02-03 10:35:44
阅读次数:
175
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1270&judgeId=194704 一开始贪心,以为就两种情况,大、小、大、小.....这样下去 小、大、小、大、....这样下去, 结果翻车。比如1、2、1、1、2、1这 ...
分类:
编程语言 时间:
2017-02-03 10:36:16
阅读次数:
250
Problem Description There is going to be a party to celebrate the 80-th Anniversary of the Ural State University. The University has a hierarchical st ...
分类:
其他好文 时间:
2017-02-03 10:34:51
阅读次数:
250
1、数据库切换器 2、EntityFramework拦截器 ...
分类:
其他好文 时间:
2017-02-03 10:36:27
阅读次数:
305
1.Spring容器 Spring容器最基本的接口就是BeanFactory, 负责配置,创建和管理bean。我们通常不直接使用BeanFactory接口,而是使用其子接口ApplicationContext. 接口ApplicationContext常用实现类是FileSystemXmlAppli ...
分类:
编程语言 时间:
2017-02-03 10:34:12
阅读次数:
267