Givennpoints on a 2D plane, find the maximum
number of points that lie on the same straight line./** * Definition for a
point. * struct Point { * ...
分类:
其他好文 时间:
2014-06-07 00:31:01
阅读次数:
233
创建测试表 以用户jyu连接,创建测试表SQL> conn
jyu/jyu;Connected.SQL> create table t (id number, name varchar2(100));Table
created.SQL> insert into t select rownum,obj...
分类:
数据库 时间:
2014-06-06 21:01:49
阅读次数:
387
Given a digit string, return all possible
letter combinations that the number could represent.A mapping of digit to
letters (just like on the telephon...
分类:
其他好文 时间:
2014-06-06 17:50:38
阅读次数:
284
在SAP中号码范围是比较重要的概念,前面《利用Number_Get_Next产生流水号(採番)》文章提到过,SAP中的很多商业对象都是以编号来操作定义的。同时涉及到外部编号、内部编号,内部编号只能是数值,没有字母;外部编号范围广,可以有字母;这里以简单的客户为列:
维护方式很多,这里我就提...
分类:
其他好文 时间:
2014-06-06 17:26:29
阅读次数:
278
求环上的逆序对最小值,这题据说应该是用线段树去做,我先拍了一个裸的,总复杂度O(N2): 1
#include 2 #include 3 using namespace std; 4 5 #define MAXN 5000 6 7 int N; 8
int A[MAXN], sorte...
分类:
其他好文 时间:
2014-06-06 13:13:01
阅读次数:
200
Given a binary tree containing digits
from0-9only, each root-to-leaf path could represent a number.An example is the
root-to-leaf path1->2->3which rep...
分类:
其他好文 时间:
2014-06-06 12:38:42
阅读次数:
255
原题地址:https://oj.leetcode.com/problems/distinct-subsequences/题意:Given
a stringSand a stringT, count the number of distinct subsequences ofTinS.A
subseq...
分类:
编程语言 时间:
2014-06-06 09:59:43
阅读次数:
330
问题: 37.5*5.5=206.08 (JS算出来是这样的一个结果,我四舍五入取两位小数)
我先怀疑是四舍五入的问题,就直接用JS算了一个结果为:206.08499999999998 怎么会这样,两个只有一位小数的数字相乘,怎么可能多出这么小数点出来。
我Google了一下,发现原来这是J...
分类:
Web程序 时间:
2014-06-06 09:04:57
阅读次数:
424
一、创测试表-- Create tablecreate table
J_STOCK_MONTH( CLASS3 VARCHAR2(12) not null, AMOUNT NUMBER(12) not null,
CREATE_TIME DATE not null, CR...
分类:
数据库 时间:
2014-06-05 22:12:41
阅读次数:
559
Givennpoints on a 2D plane, find the maximum
number of points that lie on the same straight line.public class Solution { /**
* This program is used t....
分类:
其他好文 时间:
2014-06-03 17:05:21
阅读次数:
434