码迷,mamicode.com
首页 > 其他好文
[译]好程序员的五声“呐喊”
通常编程情况下,会导致软件项目变坏的一些列反应 原文:The five shouts of good programmers 在任何一天,在这个世界上都有软件项目正在失败,这很常见。常见到当软件产品按照预期发布时人们都会感到吃惊。这不是什么新鲜事,基于被广泛引用的Standish Group的Cha... ...
分类:其他好文   时间:2016-06-07 20:51:19    阅读次数:322
Udacity_Project:Building a Student Intervention System
模型预测流程(Predictive Modelling Process): 评估矩阵:对于不均衡样本,我们选用F1值而非准确性(accuracy score)来评估,精确度和召回率也可用于本分类问题。 ...
分类:其他好文   时间:2016-06-07 20:50:31    阅读次数:290
1006. Sign In and Sign Out (25)
At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door ...
分类:其他好文   时间:2016-06-07 20:52:22    阅读次数:398
codevs 1047 邮票面值设计
...
分类:其他好文   时间:2016-06-07 20:53:05    阅读次数:159
UISearchController Attempting to load the view of a view controller while it is deallocating is not allowed and may result in undefined behavior
Attempting to load the view of a view controller while it is deallocating is not allowed and may result in undefined behavior (<UISearchController: 0x ...
分类:其他好文   时间:2016-06-07 20:51:14    阅读次数:774
1005. Spell It Right (20)
Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specificat ...
分类:其他好文   时间:2016-06-07 20:49:18    阅读次数:139
线性代数(矩阵乘法):POJ 3233 Matrix Power Series
Matrix Power Series Description Given a n × n matrix A and a positive integer k, find the sum S = A + A2 + A3 + … + Ak. Given a n × n matrix A and a p ...
分类:其他好文   时间:2016-06-07 20:50:53    阅读次数:349
[转]递归函数
在函数内部,可以调用其他函数。如果一个函数在内部调用自身本身,这个函数就是递归函数。 举个例子,我们来计算阶乘n! = 1 x 2 x 3 x ... x n,用函数fact(n)表示,可以看出: fact(n) = n! = 1 x 2 x 3 x ... x (n-1) x n = (n-1)!... ...
分类:其他好文   时间:2016-06-07 20:49:29    阅读次数:133
13.5
//13.5 import java.util.Scanner; import java.awt.*; import java.util.*; import javax.swing.*; import javax.swing.border.LineBorder; public class Test ...
分类:其他好文   时间:2016-06-07 20:47:30    阅读次数:191
ACM题目————玩转二叉树
给定一棵二叉树的中序遍历和前序遍历,请你先将树做个镜面反转,再输出反转后的层序遍历的序列。所谓镜面反转,是指将所有非叶结点的左右孩子对换。这里假设键值都是互不相等的正整数。 输入格式: 输入第一行给出一个正整数N(<=30),是二叉树中结点的个数。第二行给出其中序遍历序列。第三行给出其前序遍历序列。 ...
分类:其他好文   时间:2016-06-07 20:47:18    阅读次数:208
bzoj 4423: [AMPPZ2013]Bytehattan
4423: [AMPPZ2013]Bytehattan Description 比特哈顿镇有n*n个格点,形成了一个网格图。一开始整张图是完整的。有k次操作,每次会删掉图中的一条边(u,v),你需要回答在删除这条边之后u和v是否仍然连通。 比特哈顿镇有n*n个格点,形成了一个网格图。一开始整张图是完 ...
分类:其他好文   时间:2016-06-07 20:49:30    阅读次数:229
Beego 和 Bee 的开发实例
Beego不是一般的web开发包。它构建在大量已存在的Go之上,提供了许多的功能,以下是提供的功能: 一个完整的ORM 缓存 支持session 国际化(i18n) 实时监测和重载 发布支持 一个完整的ORM 缓存 支持session 国际化(i18n) 实时监测和重载 发布支持 Beego 和 B ...
分类:其他好文   时间:2016-06-07 20:48:03    阅读次数:287
1.VS2013和opencv3.1.0安装教程
一.先下载文件 1.VS2013 VS2013有很多版本,专业版,旗舰版,中文英文之类的,所对应的密钥也不一样。我选择的是简体中文专业版。下载链接如下。 2.opencv3.1.0 opencv也是不断的在推出新版本,在网上的帖子中会看到,由于VS版本和opencv版本的不匹配会造成两者之间不能协调 ...
分类:其他好文   时间:2016-06-07 20:48:37    阅读次数:185
第二阶段团队第二天成果。
1.修改了表不能刷新的问题。 2.面板截图 3.界面截图 4.每日会议。 ...
分类:其他好文   时间:2016-06-07 20:46:55    阅读次数:167
画图小工具第一篇
一、知识点 (一)实现画图程序所需要的APT类: import java.awt.Color; import java.awt.FlowLayout; import java.awt.Graphics; import javax.swing.JButton; import javax.swing.J ...
分类:其他好文   时间:2016-06-07 20:48:15    阅读次数:191
InputStream流解析 XML文件
...
分类:其他好文   时间:2016-06-07 20:47:35    阅读次数:272
JFinal Handler 处理流程
第一、doFilter - 沿着 Handler 链,每个 handler 调用 handle 方法进行处理,然后交给下一个 handler。 容器初始化时访问 web.xml 配置的 JFinalFilter.doFilter。 JFinal 初始化过程中可以 add JFinal 库中的Hand ...
分类:其他好文   时间:2016-06-07 20:48:38    阅读次数:441
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!