题目
Given a string s, partition s such that every substring of the partition is a palindrome.
Return the minimum cuts needed for a palindrome partitioning of s.
For example, given s = "a...
分类:
其他好文 时间:
2014-06-20 13:44:18
阅读次数:
234
QML Applications
QML是一种声明式语言,它提供了一组接口用来描述视觉组件以及他们的互动和相关性。它是一个高度可读的语言,并且被设计成使组件以一个动态的方式相互连接。同时它使组件很容易被复用以及创建定制的用户界面。使用QtQuick模块,设计者和开发者可以很容易使用QML建立流体动画的用户界面,并将这些界面连接到后端的C++库上面。
What is QML?
QML是...
分类:
移动开发 时间:
2014-06-20 11:16:40
阅读次数:
492
一个多月的努力终于有了回报,我自己研究制作的独立游戏《吃药了》,终于在360应用商店上线了。
这一款游戏呢,使用的是Qt开发的。其实开发这款简单的应用之前,我经历了端游和页游,但是对手游开发了解甚少。不过今年5月20日,Qt官方发布了Qt5.3,对Android和iOS的支持变得成熟起来了,于是我打算冒一个险,使用大家从未使用过的Qt来开发手机游戏。这一个月呢,各种心酸各种泪,我曾经感受到整天10多个小时开发的疲惫;我曾经感受到家人的种种催促;我曾经感受到同事们的好言相劝;我曾经感受到自己内心...
分类:
移动开发 时间:
2014-06-20 11:05:33
阅读次数:
295
【题目】
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root).
For example:
Given binary tree {3,9,20,#,#,15,7},
3
/ 9 20
/ 15 7
return its b...
分类:
其他好文 时间:
2014-06-20 09:42:30
阅读次数:
224
Find the contiguous subarray within an array
(containing at least one number) which has the largest sum.For example, given
the array[?2,1,?3,4,?1,2,1,...
分类:
其他好文 时间:
2014-06-20 08:59:38
阅读次数:
235
DependenciesFirst of all you need a version of
Qt for Windows. If you are an Open Source developer then you can download the
Open Source Edition of Qt...
一、QT
webkit简介1.QtQt(发音同cute)是一个跨平台的C++应用程式开发框架,有时又被称为C++部件工具箱。Qt被用在KDE桌面环境、Opera、Google
Earth、Skype、Adobe Photoshop Album和VirtualBox的开发中。它是挪威Qt Softwa...
分类:
其他好文 时间:
2014-06-20 08:56:51
阅读次数:
420
FirefoxOS平台给web开发人员希望多年的:移动环境专注于用HTML、CSS和JavaScript创建应用,本指南的目的是让你开始使用一个环境和基本应用架构,以便您可以创建下一个伟大的应用!如果你想要跟随这个指南学习,你可以下载快速开始应用应用结构打包与托管应用程序有两种类型的FirefoxO...
分类:
其他好文 时间:
2014-06-20 08:47:34
阅读次数:
318
之前我在 《Windows下Qt 5.2 for Android开发入门》一文中介绍了
Windows 下 Qt on Android 开发环境的搭建,略过了 Android SDK 的安装,实际还是有一些朋友会在这里遇到问题。这里再专门介绍一下
Android SDK 的安装。 版权全部,转载.....
分类:
移动开发 时间:
2014-06-11 22:16:13
阅读次数:
399
题目
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.
For example, given
s = "leetcode",
dict =...
分类:
其他好文 时间:
2014-06-07 13:53:28
阅读次数:
247