码迷,mamicode.com
首页 >  
搜索关键字:life in programming    ( 6263个结果
有关于结对编程的一些看法
结对编程是一个很有意思的形式,我很对这个感兴趣,因为大学的时候就是参加了ACM/ICPC,三个人,一台电脑,去共同解决几个问题。典型的结对编程。 结对编程(英语:Pair programming)是一种敏捷软件开发的方法,两个程序员在一个计算机上共同工作。一个人输入代码,而另一个人审查他输入的...
分类:其他好文   时间:2014-05-26 23:48:51    阅读次数:363
QNX LPT Port Programming
#include #include /* for sleep() */#include /* for uintptr_t */#include /* for in*() and out*() functions */#include /* for ThreadCtl() */#include...
分类:其他好文   时间:2014-05-26 22:04:49    阅读次数:285
Ruby字符串《转》
Ruby很强大,可是相关资料少而不详细。本文是个人学习总结,测试环境是windows xp sp3 + NetBeans6.7.1(JRuby 1.2.0),主要结论来自于互联网、"Programming Ruby"2e、对于源代码的分析和实测代码。双引号字符串和单引号字符串都能表示字符串对象,区别...
分类:其他好文   时间:2014-05-26 22:00:09    阅读次数:466
求两个字符串最长公共子串(动态规划)
code如下: //Longest common sequence, dynamic programming method void FindLCS(char *str1, char *str2) { if(str1 == NULL || str2 == NULL) return; int length1 = strlen(str1)+1; int length2 = strlen(...
分类:其他好文   时间:2014-05-26 04:56:50    阅读次数:215
在Python中处理中文路径
AlienTech for better life!~...
分类:编程语言   时间:2014-05-26 04:35:51    阅读次数:389
How To Manually Install Oracle Java on Ubuntu
IntroductionJava is a programming technology originally developed by Sun Microsystems and later acquired by Oracle. Oracle Java is a proprietary imple...
分类:数据库   时间:2014-05-25 23:20:27    阅读次数:450
Coursera公开课Functional Programming Principles in Scala习题解答:Week 3
引言 这周的作业其实有点复杂,需要完成的代码有点多,有点绕。本周的课程主要讲了Scala中的类、继承和多态,作业也很好的从各个方面考察了课程的内容。作业题目工程主要需要完成的部分是TweetSet.scala这个文件中的内容,比较新潮,都是和推特相关。其中定义了一个抽象类TweetSet,以及其的两个子类Empty、NonEmpty,表示空集和非空集。非空集使用二叉树来表示,二叉树的根是一个Tw...
分类:其他好文   时间:2014-05-25 16:53:15    阅读次数:444
Windows下进程间通信及数据共享
进程是装入内存并准备执行的程序,每个进程都有私有的虚拟地址空间,由代码、数据以及它可利用的系统资源(如文件、管道等)组成。多进程/多线程是Windows操作系统的一个基本特征。Microsoft Win32应用编程接口(Application Programming Interface, API)....
分类:Windows程序   时间:2014-05-24 09:33:30    阅读次数:422
getApplicationContext()、getBasecontext()、getApplication() 、getParent()
getApplicationContext()Application context is associated with the Applicaition and will always be the same throughout the life cycle.getBasecontext()s...
分类:移动开发   时间:2014-05-24 09:23:43    阅读次数:249
HDU 1048 What Is Your Grade? (简单模拟)
What Is Your Grade? Problem Description “Point, point, life of student!” This is a ballad(歌谣)well known in colleges, and you must care about your...
分类:其他好文   时间:2014-05-23 00:59:22    阅读次数:375
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!