码迷,mamicode.com
首页 > 2017年02月03日 > 全部分享
Lowest Common Ancestor III Lintcode
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
Qt Creator调用VS2008生成的DLL注意事项 good
问题:生成的dll文件QT无法静态/隐式调用 分析:调用的lib库可能是msvc编译的,而我用Qt调用,Qt默认编译器是minGW,两种编译器生成的函数名不一样,所以调用的时候你要用哪个函数,编译结果肯定显示这个函数未定义! 解决1:用VS2008生成DLL文件时,采用__declspec方式导出函 ...
分类:其他好文   时间:2017-02-03 10:43:33    阅读次数:280
c++的各种类型转换方式
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中文编码(好多方法)
qt中文编码 来源:http://www.cublog.cn/u1/59481/showart_1947231.html 前些日子,被编码折磨了一段时间,总结一下Qt中的编码。 【Qt 编码简单实验】 首先,Qt中得QString 类对字符串进行了封装,其内部使用Unicode对传入的串进行编码。这 ...
分类:其他好文   时间:2017-02-03 10:42:13    阅读次数:195
自定义QT窗口部件外观之QStyle
自定义QT窗口部件外观 重新定义Qt内置窗口部件的外观常用的方法有两种:一是通过子类化QStyle 类或者预定义的一个样式,例如QWindowStyle,来定制应用程序的观感;二是使用Qt样式表。 QStyle 类的使用 1. 准备必要的背景图片。在你想添加自定义风格的工程目录下新建一个文件夹“im ...
分类:其他好文   时间:2017-02-03 10:40:51    阅读次数:249
Qt Lighthouse学习(二),就是QPA(Qt Platform Abstraction) 项目的名字
上一次关注Qt Lighthouse是在6月初,可是现在都8月底了。时间真快... Lighthouse 是 QPA(Qt Platform Abstraction) 项目的名字,它使得将Qt移植到新的平台变得比较简单。尽管现在它已经完全融入到了Qt主干代码中,lighthouse作为独立项目已经不 ...
分类:其他好文   时间:2017-02-03 10:42:06    阅读次数:523
QT延时方法整理(QTimer::singleShot,QWaitCondition,QDateTime.secsTo三种新方法)
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
常见的几个Qt编程问题的处理(转自QT中文论坛)(挺实用的)
1、如何在窗体关闭前自行判断是否可关闭答:重新实现这个窗体的closeEvent()函数,加入判断操作 void MainWindow::closeEvent(QCloseEvent*event){if (maybeSave()){writeSettings();event->accept();}e ...
分类:其他好文   时间:2017-02-03 10:40:24    阅读次数:203
DelphiRemotePushSender
https://github.com/grijjy/DelphiRemotePushSender https://github.com/grijjy/DelphiScalableClientSockets https://github.com/grijjy/GrijjyFoundation Send ...
分类:Windows程序   时间:2017-02-03 10:38:59    阅读次数:310
MySQL每个分类的前几条记录
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
1272 最大距离 只想到了dp
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
Path Sum III Leetcode
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
C# 自定config文件
1、配置文件 2、代码读取 ...
分类:Windows程序   时间:2017-02-03 10:35:23    阅读次数:261
1270 数组的最大代价 dp
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1270&judgeId=194704 一开始贪心,以为就两种情况,大、小、大、小.....这样下去 小、大、小、大、....这样下去, 结果翻车。比如1、2、1、1、2、1这 ...
分类:编程语言   时间:2017-02-03 10:36:16    阅读次数:250
HDU-1520 Anniversary party (树形DP)
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
EntityFramework 实现读写分离
1、数据库切换器 2、EntityFramework拦截器 ...
分类:其他好文   时间:2017-02-03 10:36:27    阅读次数:305
Spring 容器
1.Spring容器 Spring容器最基本的接口就是BeanFactory, 负责配置,创建和管理bean。我们通常不直接使用BeanFactory接口,而是使用其子接口ApplicationContext. 接口ApplicationContext常用实现类是FileSystemXmlAppli ...
分类:编程语言   时间:2017-02-03 10:34:12    阅读次数:267
687条   上一页 1 ... 35 36 37 38 39 40 41 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!