首页 > 2014年05月30日 > 全部分享
Qt 类外调用一个 private slots 函数
MainWindow中 private slots 函数 void print_on_log(QString strtemp);输出一个字符串到编辑窗口中classMainWindow:publicQMainWindow{Q_OBJECTpublic:explicitMainWindow(QWidg...
分类:其他   时间:2014-05-30 15:12:33    收藏:0  评论:0  赞:0  阅读:659
Insertion Sort List
Sort a linked list using insertion sort./** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNo...
分类:其他   时间:2014-05-30 15:15:08    收藏:0  评论:0  赞:0  阅读:429
Palindrome Partitioning II
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning ofs...
分类:其他   时间:2014-05-30 15:13:50    收藏:0  评论:0  赞:0  阅读:450
Single Number II
Given an array of integers, every element appearsthreetimes except for one. Find that single one.Note:Your algorithm should have a linear runtime comp...
分类:其他   时间:2014-05-30 15:16:35    收藏:0  评论:0  赞:0  阅读:474
Sort List
Sort a linked list inO(nlogn) time using constant space complexity./** * Definition for singly-linked list. * struct ListNode { * int val; * L...
分类:其他   时间:2014-05-30 15:17:55    收藏:0  评论:0  赞:0  阅读:398
Path Sum
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo...
分类:其他   时间:2014-05-30 15:19:11    收藏:0  评论:0  赞:0  阅读:300
读《人月神话》所感
《人月神话》读书心得: 因为现在还是学生,且没有什么真正在应用项目的开发经验,所以读《人月神话》这本书,与其说是在学习这位计算机先驱的经验,不如说是在了解一个大型软件系统的开发过程以及在开发过程中将会遇到的困难。但是,通过一些小项目的练习经验,还是有很多感触。 如果以后工作了,从事软件编程这...
分类:其他   时间:2014-05-30 15:20:37    收藏:0  评论:0  赞:0  阅读:408
Populating Next Right Pointers in Each Node
Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; }Populate each next pointe...
分类:其他   时间:2014-05-30 15:22:02    收藏:0  评论:0  赞:0  阅读:338
Evaluate Reverse Polish Notation
Evaluate the value of an arithmetic expression inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may be an integer or another express...
分类:其他   时间:2014-05-30 15:57:59    收藏:0  评论:0  赞:0  阅读:377
Distinct Subsequences
Given a stringSand a stringT, count the number of distinct subsequences ofTinS.A subsequence of a string is a new string which is formed from the orig...
分类:其他   时间:2014-05-30 15:59:23    收藏:0  评论:0  赞:0  阅读:398
Linked List Cycle II
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?/**...
分类:其他   时间:2014-05-30 16:00:38    收藏:0  评论:0  赞:0  阅读:374
软件工程课程收获
软件工程课最大的收获应该就是让我感受到了些许走上工作敢为后面对boss的氛围,那么多的任务,那么多的文档,以及那么多的deadline,一个本应该为理论课的实践课,总是一次次撞击着我们的小心脏。要知道将来走向工作岗位的我们是没有大牛可以依靠的,可以依靠的只有自己,其实在压力下,我们也可以成为大...
分类:其他   时间:2014-05-30 16:01:57    收藏:0  评论:0  赞:0  阅读:360
Palindrome Partitioning
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return all possible palindrome partitioning ofs.For example, giv...
分类:其他   时间:2014-05-30 16:04:50    收藏:0  评论:0  赞:0  阅读:396
Construct Binary Tree from Preorder and Inorder Traversal
Given preorder and inorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree./** * Definitio...
分类:其他   时间:2014-05-30 16:03:21    收藏:0  评论:0  赞:0  阅读:378
Linux 下 who 命令
命令: who:常用选项意义-a显示所有用户的所有信息-m显示运行该程序的用户-p只显示用户的登陆帐号和登陆用户的数量,该选项优先级高于其他任何选项-r显示当前用户的运行级别,是在那个级别运行的-u在登陆用户后面显示该用户最后一次对系统进行操作距今的时间 参数:注:格式有点乱, -a, --a...
分类:系统服务   时间:2014-05-30 16:06:05    收藏:0  评论:0  赞:0  阅读:578
软件工程课总结与建议
软件工程课终于结课了,在这里做一个小的总结: 在这门课上,我了解了整个软件开发的流程,以及用到的一些测试软件性能以及衡量工作效率的工具。认识到一些在软件编程工作中容易忽略的问题,体会到团队合作的总要性。 最后,建议老师把“你提想法,我来编程”活动加载到项目实践中,征求广大校友意见。这样我...
分类:其他   时间:2014-05-30 16:07:24    收藏:0  评论:0  赞:0  阅读:385
Linked List Cycle
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?/** * Definition for singly-linked list. *...
分类:其他   时间:2014-05-30 16:08:50    收藏:0  评论:0  赞:0  阅读:442
Word Break
Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more dictionary words.For exampl...
分类:其他   时间:2014-05-30 16:10:10    收藏:0  评论:0  赞:0  阅读:370
Binary Tree Maximum Path Sum
Given a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the below binary tree, 1 ...
分类:其他   时间:2014-05-30 16:11:41    收藏:0  评论:0  赞:0  阅读:354
Symmetric Tree
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric: 1 / \ ...
分类:其他   时间:2014-05-30 16:14:22    收藏:0  评论:0  赞:0  阅读:396
716条   上一页 1 2 3 4 5 6 ... 36 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!