首页 > 其他
ZOJ 1090 The Circumference of the Circle
原题链接题目大意:已知三角形的三个顶点坐标,求其外接圆的周长。解法:刚看到这道题时,马上拿出草稿纸画图,想推导出重心坐标,然后求出半径,再求周长。可是这个过程太复杂了,写到一半就没有兴致了,还是求助于Google。在Wiki百科找到一个已知三条边长度,求外接三角形周长的算法,diameter = a...
分类:其他   时间:2014-02-27 22:40:06    收藏:0  评论:0  赞:0  阅读:566
LeetCode - Word Search
Word Search2014.2.26 23:59Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially ad...
分类:其他   时间:2014-02-27 22:39:42    收藏:0  评论:0  赞:0  阅读:556
强矩阵弱矩阵感想颇多
项目管理漫谈。
分类:其他   时间:2014-02-27 22:38:43    收藏:0  评论:0  赞:0  阅读:826
Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:其他   时间:2014-02-27 22:32:46    收藏:0  评论:0  赞:0  阅读:515
linux下的shell基础
shell :shell类似于 命令 与 linux之间的 解析器,因为命令不可以在cpu上直接执行,一般我们使用的是bash1。查看目前使用的是哪种shellenv : 可以看到目前linux的配置情况 2。查看当前系统下有几种shelllls bin/*sh3。改变目前使用的shellchsh ...
分类:其他   时间:2014-02-27 22:31:46    收藏:0  评论:0  赞:0  阅读:491
bat删除系统默认共享
在我们的系统中,有很多默认的共享是开启的,可以设置一个bat文件在每次开机的时候把共享删除。net share c$ /delnet share d$ /delnet share e$ /delnet share ADMIN$ /delnet share IPC$ /delnet share pri...
分类:其他   时间:2014-02-27 22:31:13    收藏:0  评论:0  赞:0  阅读:424
FTL+TCL+SSD
FTL1.百度百科http://baike.baidu.com/link?url=HJ94Rz2Td83V8OW-6dD_h_P8CZb9VFR6HznPDopY_SFdfXDaMriYcBm1Xwpwrsnnv1HB1kSlFkYX0EjfNTcOfa
分类:其他   时间:2014-02-27 22:26:51    收藏:0  评论:0  赞:0  阅读:519
编程之美 set 17 拈游戏分析 (2)
题目有 N 块石头河两个玩家 A 和 B. A 先将石头分成若干堆, 然后按照 BABABA... 的顺序轮流取石块, 能将剩下的石头依次取光的玩家获胜. 每次取石头时, 每个玩家只能取一堆的 m(m>=1) 个石头思路1. 依然举例子.当 N = 1 时, 输. N = 2 时, 可以分成 1, ...
分类:其他   时间:2014-02-27 22:18:04    收藏:0  评论:0  赞:0  阅读:332
还没有过的题目记录
2014.02.23http://acm.timus.ru/problem.aspx?space=1&num=1212http://acm.fzu.edu.cn/problem.php?pid=16082014.02.26http://codeforces.com/problemset/proble...
分类:其他   时间:2014-02-27 22:14:40    收藏:0  评论:0  赞:0  阅读:411
RenderPartial和RenderAction区别
本篇参考了 Shailendra Chauhan和 Jag Reehal的博文。 RenderParital和RenderAction的共同点: ※ 都能返回部分视图 ※ 返回的部分视图和主视图共用一个TextWriter对象把内容写到Http Response中 什么时候使用Html.Render...
分类:其他   时间:2014-02-27 22:02:30    收藏:0  评论:0  赞:0  阅读:468
java.lang.NoClassDefFoundError: org/apache/juli/logging/LogFactory的解决(转)
自己前一段时间出现了这个问题,通过在网上搜索,大概知道了原因,整理下一,以供大家参考。将项目部署好后,启动tomcat后报错,java.lang.NoClassDefFoundError: org/apache/juli/logging/LogFactory报这个错说明你用的是tomcat7。目前的...
分类:其他   时间:2014-02-27 21:57:34    收藏:0  评论:0  赞:0  阅读:429
LLVM language 参考手册(译)(4)
函数(Functions)LLVM函数定义由“define” 关键字,一个可选的链接标识,一个可选的可见性模式,一个可选的DLL存储类别,一个可选的调用约定,一个可选的unnamed_addr属性,一个返回值类型,一个可选的返回值的参数属性,一个函数名,一个(可能为空的)实参列表(每一个都带有可选的...
分类:其他   时间:2014-02-27 21:50:08    收藏:0  评论:0  赞:0  阅读:497
一栏固定一栏跟随
一栏固定一栏跟随 这里开始左栏固定左栏固定左栏固定左栏固定左栏固定左栏固定 sdfsd 移动层 _针对IE6帮助相对于窗口固定位置的元素实现无抖动效果background-attachment:fixed 随着页面的滚动轴背景图片不会移动
分类:其他   时间:2014-02-27 21:49:40    收藏:0  评论:0  赞:0  阅读:459
必须在构造函数基/成员初始值设定项列表中初始化
C++ primer 上面的一个例子: // constRef.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"class constRef{public: constRef(int ii); int i; const int ci; int &ri;};const...
分类:其他   时间:2014-02-27 21:49:12    收藏:0  评论:0  赞:0  阅读:1395
HDUOJ---3371Connect the Cities
Connect the CitiesTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 7997Accepted Submission(s): 2267...
分类:其他   时间:2014-02-27 21:41:52    收藏:0  评论:0  赞:0  阅读:475
WPF-层级控件-TreeView
分类:其他   时间:2014-02-27 21:38:32    收藏:0  评论:0  赞:0  阅读:406
CentOs6.5配置vsftpd
一、安装篇#安装vsftpdyum -yinstallvsftpd#启动servicevsftpdstart#开启启动chkconfigvsftpdon二、服务篇#启动ftp服务servicevsftpdstart#查看ftp服务状态servicevsftpdstatus#重启ftp服务servic...
分类:其他   时间:2014-02-27 21:29:40    收藏:0  评论:0  赞:0  阅读:498
LeetCode - Palindrome Partitioning II
Palindrome Partitioning II2014.2.26 22:57Given a strings, partitionssuch that every substring of the partition is a palindrome.Return the minimum cuts...
分类:其他   时间:2014-02-27 21:23:47    收藏:0  评论:0  赞:0  阅读:503
LeetCode - Reverse Nodes in k-Group
Reverse Nodes in k-Group2014.2.26 23:37Given a linked list, reverse the nodes of a linked listkat a time and return its modified list.If the number of...
分类:其他   时间:2014-02-27 21:10:05    收藏:0  评论:0  赞:0  阅读:448
编程之美 set 16 拈游戏分析(1)
题目N 个石头排成一行, 每块石头有固定的位置和编号, 两个玩家依次取石头, 每个玩家可以取其中的任一块石头, 或者相邻的两个石头. 石头在游戏过程中不能移位, 最后将剩下的石头依次取光的玩家获胜思路1. 从简单的特例除法讨论当石头的数目 N = 1,2 时, 先取者胜当石头的数目 N = 3 时,...
分类:其他   时间:2014-02-27 21:03:41    收藏:0  评论:0  赞:0  阅读:542
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!