MainWindow中 private slots 函数 void
print_on_log(QString
strtemp);输出一个字符串到编辑窗口中classMainWindow:publicQMainWindow{Q_OBJECTpublic:explicitMainWindow(QWidg...
分类:
其他好文 时间:
2014-05-30 15:11:51
阅读次数:
286
Sort a linked list using insertion sort./** *
Definition for singly-linked list. * struct ListNode { * int val; * ListNode
*next; * ListNo...
分类:
其他好文 时间:
2014-05-30 15:14:27
阅读次数:
245
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:10
阅读次数:
262
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:15:53
阅读次数:
225
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:18
阅读次数:
312
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:18:35
阅读次数:
246
《人月神话》读书心得:
因为现在还是学生,且没有什么真正在应用项目的开发经验,所以读《人月神话》这本书,与其说是在学习这位计算机先驱的经验,不如说是在了解一个大型软件系统的开发过程以及在开发过程中将会遇到的困难。但是,通过一些小项目的练习经验,还是有很多感触。
如果以后工作了,从事软件编程这...
分类:
其他好文 时间:
2014-05-30 15:19:52
阅读次数:
241
Given a binary tree struct TreeLinkNode {
TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; }Populate each next
pointe...
分类:
其他好文 时间:
2014-05-30 15:21:20
阅读次数:
181
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:22:39
阅读次数:
301
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:58:40
阅读次数:
187
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 15:59:56
阅读次数:
249
软件工程课最大的收获应该就是让我感受到了些许走上工作敢为后面对boss的氛围,那么多的任务,那么多的文档,以及那么多的deadline,一个本应该为理论课的实践课,总是一次次撞击着我们的小心脏。要知道将来走向工作岗位的我们是没有大牛可以依靠的,可以依靠的只有自己,其实在压力下,我们也可以成为大...
分类:
其他好文 时间:
2014-05-30 16:01:15
阅读次数:
192
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:06
阅读次数:
237
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:02:40
阅读次数:
289
命令:
who:常用选项意义-a显示所有用户的所有信息-m显示运行该程序的用户-p只显示用户的登陆帐号和登陆用户的数量,该选项优先级高于其他任何选项-r显示当前用户的运行级别,是在那个级别运行的-u在登陆用户后面显示该用户最后一次对系统进行操作距今的时间
参数:注:格式有点乱, -a, --a...
分类:
系统相关 时间:
2014-05-30 16:05:25
阅读次数:
346
软件工程课终于结课了,在这里做一个小的总结:
在这门课上,我了解了整个软件开发的流程,以及用到的一些测试软件性能以及衡量工作效率的工具。认识到一些在软件编程工作中容易忽略的问题,体会到团队合作的总要性。
最后,建议老师把“你提想法,我来编程”活动加载到项目实践中,征求广大校友意见。这样我...
分类:
其他好文 时间:
2014-05-30 16:06:42
阅读次数:
255
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:05
阅读次数:
238