码迷,mamicode.com
首页 >  
搜索关键字:qt quick example    ( 27971个结果
【LeetCode】Permutations
Given a collection of numbers, return all possible permutations.For example,[1,2,3]have the following permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:其他好文   时间:2014-05-27 02:42:35    阅读次数:202
d3 library example for scatter chart
d3 library example for scatter chart
分类:其他好文   时间:2014-05-27 02:23:46    阅读次数:191
MAC 平台 QT编写iphone程序,“error loading iPhoneSimulatorRemoteClientRun ended unexpectedly”
本日这么多年一直做C++开发,最近要做QT项目,被QT做界面的新特性所吸引。QSS QML的确是亮点。还有一个就是跨平台这方面,自己玩了玩。用的QT 的开发包是在官网上下载qt-opensource-mac-x64-android-ios-5.2.1.dmg在使用Qt creator写一个hellw...
分类:其他好文   时间:2014-05-19 20:02:12    阅读次数:342
【LeetCode】Rotate List
Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.start...
分类:其他好文   时间:2014-05-19 16:25:44    阅读次数:234
汇编语言-求分段函数值
计算函数值题目:计算给定函数值要求:编制程序,计算下面函数值 其中,从键盘输入x,y,输出数据为a。输入输出时候都要求有提示信息。考查知识点:分支结构的应用。代码如下: 1 ; Example assembly language program -- 2 ; Author: karllen 3 .....
分类:编程语言   时间:2014-05-19 16:11:03    阅读次数:426
批处理脚本,git本地workspace一键推送到远端repo
1 @echo off 2 setlocal enabledelayedexpansion 3 git status||goto :eof 4 5 set "msg=quick push. %date% %time%" 6 if #%1==# (set /p "msg=commit messa...
分类:其他好文   时间:2014-05-19 15:14:16    阅读次数:402
Qt5 中对 C++11 一些新特性的封装
在 Qt5 中,提供更多 C++11 的特性支持,接下来我们将进行详细的说明。slots (槽) 的 Lambda 表达式Lambda表达式是 C++11 中的一个新语法,允许定义匿名函数。匿名函数可用于使用小函数作为参数,而无需显式的进行声明。之前可以通过编写函数指针来达到同样的目的。在 Qt 4...
分类:编程语言   时间:2014-05-19 12:28:11    阅读次数:373
【LeetCode】Add Binary
Given two binary strings, return their sum (also a binary string).For example,a ="11"b ="1"Return"100".public class Solution { public String addBin...
分类:其他好文   时间:2014-05-19 12:15:49    阅读次数:220
LeetCode: Remove Nth Node From End of List [019]
【题目】 Given a linked list, remove the nth node from the end of list and return its head. For example, Given linked list: 1->2->3->4->5, and n = 2. After removing the second node from the end, the linked list becomes 1->2->3->5. Note: Given n will ...
分类:其他好文   时间:2014-05-18 18:48:03    阅读次数:269
LeetCode 016 3Sum Closest
【题目】 Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would have exactly one solution. For example, given array S = {...
分类:其他好文   时间:2014-05-18 10:37:57    阅读次数:269
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!