码迷,mamicode.com
首页 > 2014年07月28日 > 全部分享
hdu 2892 Area
http://acm.hdu.edu.cn/showproblem.php?pid=2892解题思路:求多边形与圆的相交的面积是多少。以圆心为顶点,将多边形划分为n个三角形。接下来就求出每个三角形与圆相交的面积。因为三角形的一个点是圆心,所以三角形的另外两个点与圆的情况有以下几种:(1)两点都在圆里...
分类:其他好文   时间:2014-07-28 11:37:10    阅读次数:237
pyqt说明
我是个PHP程序员,不过有时候觉得需要写些小软件,对于我这种不太熟悉桌面软件开发的人来说,界面问题最让我头痛。听说Qt很强大,而且是跨平台,所以决定学习它用来弥补我写桌面软件的不足。Qt一般是通过C++来调用,如果要让Python支持Qt,需要下载PyQt这个库,十几M大小,安装后就可以让Pytho...
分类:其他好文   时间:2014-07-28 11:36:40    阅读次数:282
Linux Systemcall、Llinux Kernel Debug Based On Sourcecode
关于系统调用的基本原理,请参阅另一篇文章,本文的主要目标是从内核源代码的角度来学习一下系统调用在底层的内核中是如何实现的
分类:系统相关   时间:2014-07-28 11:36:20    阅读次数:377
Python:SQLMap源码精读之基于错误的盲注(error-based blind)
目标网址http://127.0.0.1/shentou/sqli-labs-master/Less-5/?id=1Payload的生成 1 2 MySQL >= 5.0 AND error-based - WHERE or HAVING clause 3 2 4 1...
分类:数据库   时间:2014-07-28 11:36:10    阅读次数:433
python with原理
在python2.5+中可以用with来保证关闭打开的文件with open('hello.txt') as f: do some file operations为什么要引入with呢?在之前如果要保证关闭文件需要这样:f = open('hello.txt')try: do some fi...
分类:编程语言   时间:2014-07-28 11:36:00    阅读次数:305
CSU 1004
1004: Xi and BoTime Limit:1 SecMemory Limit:128 MBSubmit:273Solved:93[Submit][Status][Web Board]DescriptionBo has been in Changsha for four years. How...
分类:其他好文   时间:2014-07-28 11:35:50    阅读次数:213
LeetCode "Combinations"
Typical recurrsion\DFS problem. Just take care of memory use.class Solution {public: vector> ret; void go(int currMaxN, int currK, int k, unorde...
分类:其他好文   时间:2014-07-28 11:35:40    阅读次数:240
数据库备份还原
http://www.cnblogs.com/brucexuyg/archive/2012/06/22/2558755.html以表”Table”为例:如类型是MyISAM, 数据文件则以”Table.frm””Table.MYD””Table.MYI””三个文件存储于”/data/$databas...
分类:数据库   时间:2014-07-28 11:35:30    阅读次数:247
Merge Interval leetcode java
题目:Given a collection of intervals, merge all overlapping intervals.For example,Given [1,3],[2,6],[8,10],[15,18],return [1,6],[8,10],[15,18].题解:这道题主要....
分类:编程语言   时间:2014-07-28 11:35:20    阅读次数:239
Insert Interval leetcode java
题目:Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were ini....
分类:编程语言   时间:2014-07-28 11:35:10    阅读次数:293
Length of Last Word leetocde java
题目:Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.If the last w....
分类:编程语言   时间:2014-07-28 11:35:00    阅读次数:250
Discuz x2.5的注册后返回第三方应用
修改文件 source/class/class_member.php找︰ $refreshtime = 3000;修改上方的: $url_forward = dreferer();例如︰ $url_forward = 'http://www.discuz.net';
分类:其他好文   时间:2014-07-28 11:34:50    阅读次数:203
Jump Game II leetcode java
题目:Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your ma....
分类:编程语言   时间:2014-07-28 11:34:40    阅读次数:210
Longest Substring Without Repeating Characters leetcode java
题目:Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letter....
分类:编程语言   时间:2014-07-28 11:34:30    阅读次数:265
Sort Colors leetcode java
题目:Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order r....
分类:编程语言   时间:2014-07-28 11:34:20    阅读次数:297
Jump Game leetcode java
题目:Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your ma....
分类:编程语言   时间:2014-07-28 11:33:50    阅读次数:278
ThinkPad L440 FN键设置
刚入手了ThinkPad L440,用起来相当不错,嘿嘿!L440系统默认(F1-F12)键盘为系统默认功能键,主要控制音量、亮度、连接投影仪等。因为编写程序需要调试,经常用到F10,F11等键,但是默认这些键都是系统功能键,要按FN+(F1-F12)键才可以实现(F1-F12)的功能,用起来相当费...
分类:其他好文   时间:2014-07-28 11:33:40    阅读次数:297
1482条   上一页 1 ... 60 61 62 63 64 65 66 ... 88 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!