1、对于string,number等基础类型,==和===是有区别的
1)不同类型间比较,==之比较“转化成同一类型后的值”看“值”是否相等,===如果类型不同,其结果就是不等
2)同类型比较,直接进行“值”比较,两者结果一样
2、对于Array,Object等高级类型,==和===是没有区别的
进行“指针地址”比较
3、基础类型与高级类型,==和===是有区别的
1)...
分类:
Web程序 时间:
2015-03-21 18:42:43
阅读次数:
131
问题描述:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the t...
分类:
其他好文 时间:
2015-03-21 18:24:54
阅读次数:
124
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where
the candidate numbers sums to T.
The same repeated number may be chosen from C unlimited numb...
分类:
编程语言 时间:
2015-03-21 17:10:57
阅读次数:
193
题意:输入一组数,将其割成三段,每一段的值相同
解法:因为要割三组值相同,所以每一组的值一定是整体求和的1/3
千万记得long long,血的代价
#include
#include
long long num[500005];
int main()
{
int n;
long long a;
int i,j;
long long all;
wh...
分类:
其他好文 时间:
2015-03-21 17:10:54
阅读次数:
296
1. x/rec >= 10.2. find start and end of a number. 1 class Solution { 2 public: 3 bool isPalindrome(int x) { 4 if (x = 10) rec *= 10; 7 ...
分类:
其他好文 时间:
2015-03-21 16:54:58
阅读次数:
122
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:
其他好文 时间:
2015-03-21 16:54:40
阅读次数:
126
我们可以在两张表之间使用insert实现简单的复制,(两张表的结构要相同)实例如下:
SQL> create table T(
2 tid number(4),
3 tname varchar2(10) default 'abc',
4 tbirthday date default sysdate);
表已创建。
SQL> insert into T valu...
分类:
其他好文 时间:
2015-03-21 15:37:39
阅读次数:
153
Write a function that takes an unsigned integer and returns the number of ’1' bits it has (also known as theHamming weight).For example, the 32-bit in...
分类:
其他好文 时间:
2015-03-21 12:33:20
阅读次数:
154
题意: 输入一个长度 n 第二行给出长度为n的数组,数组的值刚好为0到n-1这n个数。 然后每次把数组的第一个数放到最后一个,放n-1次,共有n个排列,这n个排列就有n个逆序数,输出这n个逆序数的最小值。我的做法:1、每次输入a[i]后,都把a[i] ++;2、求出第一个排列的逆序数3、递...
分类:
编程语言 时间:
2015-03-21 12:32:52
阅读次数:
130
june@june-Satellite-C600:~/nodejs/lesson$?node?random.js
Random?Number?Generator?Running…
events.js:72
????????throw?er;?//?Unhandled?‘error‘?event
??????????????^...
分类:
Web程序 时间:
2015-03-21 11:25:17
阅读次数:
197