码迷,mamicode.com
首页 >  
搜索关键字:qt quick example    ( 27971个结果
[Leetcode] Longest Consecutive Sequence
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given[100, 4, 200, 1, 3, 2],The longest ...
分类:其他好文   时间:2014-07-22 23:16:14    阅读次数:408
Android NDK
http://my.oschina.net/lifj/blog/177087javah -classpathsrc -d jni com.example.hellojni.MainAcitivity C:\Program Files\Java\jdk1.7.0_21\bin\javah.exe${p...
分类:移动开发   时间:2014-07-22 23:15:36    阅读次数:375
【leetcode刷题笔记】Remove Duplicates from Sorted List
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:其他好文   时间:2014-07-22 23:12:13    阅读次数:426
LeetCode3:Longest Substring Without Repeating Characters
题目: Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letter...
分类:其他好文   时间:2014-04-30 21:15:32    阅读次数:511
【qt学习002】各类位置信息和各类标准输入框
不得不吐(赞)槽(扬)一下《Linux窗口程序设计—Qt4精彩实例分析》,书中的示例基本上是不完整的,只给出了相应知识点的实现,若要完整地运行整个工程,这需要读者来添加其余代码。在添加代码的过程中,因为不熟,常常是战战兢兢的,查很多资料,然后才敢往上写点代码,有时候挺浪费时间的。今天学示例3和4,各...
分类:其他好文   时间:2014-04-30 18:28:15    阅读次数:615
Qt编译mysql驱动
Qt连接MySQL 分类: Qt 数据库 2013-02-27 20:57 1452人阅读 评论(0) 收藏 举报一般情况下,qt只带了qsqlite4和qodbc两种驱动,如果在安装qt时,你没有添加qt -mysq参数,那么意味着,在你的程序中不能直接使用mysql数据库。那么你就需要安装这个插...
分类:数据库   时间:2014-04-30 18:10:35    阅读次数:587
php从零单排-01
1. 初识PHP PHP是Hypertext Preprocessor首字母的递归缩写,主要应用于web开发,目前使用比较广泛,资料也比较齐全,另外PHP是开源的。 PHP能够直接内嵌到网页之中: Example 其中 表示PHP代码...
分类:Web程序   时间:2014-04-30 14:11:46    阅读次数:482
char*,string,float,int 转换
char* 转 float:double atof (const char* str);/* atof example: sine calculator */#include /* printf, fgets */#include /* atof */#include ...
分类:其他好文   时间:2014-04-30 13:44:13    阅读次数:410
sql server数据库可疑状态解决方法
前段时间客户数据服务器断电,开机后发现数据库状态标记为可疑,可能是断电引起的数据库日志文件损坏,修复方法如下:只有mdf文件,重建日志: 1 --注:example为测试用数据库,相应的Example_log.ldf为测试用的日志文件 2 use master 3 go 4 alter data.....
分类:数据库   时间:2014-04-29 16:41:46    阅读次数:452
【leetcode刷题笔记】Spiral Matrix
Given a matrix ofmxnelements (mrows,ncolumns), return all elements of the matrix in spiral order.For example,Given the following matrix:[ [ 1, 2, 3 ],...
分类:其他好文   时间:2014-04-29 10:37:46    阅读次数:434
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!