最新 最热

【编程之美】求二进制数中1的个数

对于一个字节(8bit)的无符号整型变量,求其二进制表示中“1”的个数,要求算法的执行效率尽可能高。01class解法一:看到这个问题,一个最直接的想法就是%2来统计1的个数了int cou...

2018-03-15
1

回车监听事件执行多次

我原本想监听输入框的焦点事件,在焦点放在输入框上的时候才监听回车事件,代码如下:$("input").focus(function() {$("input").keypress(functio

2018-03-14
0

基于协同过滤的推荐引擎(理论部分)

记得原来和朋友猜测过网易云的推荐是怎么实现的,大概的猜测有两种:一种是看你听过的和收藏过的音乐,再看和你一样听过这些音乐的人他们喜欢听什么音乐,把他喜欢的你没听过的音乐推荐给你;另一种是看他听过的音乐或者收藏的...

2018-03-08
1

阻止a标签的默认事件及延伸

先贴一段代码<html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compat......

2018-03-01
1

No.001 Two Sum

Two SumTotal Accepted: 262258Total Submissions: 1048169Difficulty: EasyGiven an array of integers, return indices of the two numbers such that they add up t...

2018-02-27
1

今天-零基础课的教学事故及全过程

有什么说什么,有错了就要认。“今天我有个地方讲错了”,“然后我还说提出问题的同学有点过于纠结”。出问题要说清楚,来,事情是这样的。。。截图一中,点击事件触发之后,要进行一个if判断,在这个if判断...

2018-02-06
1

技术怪题

有些公司的题真的是会让咱们大跌眼镜。不信,看下面一道题。int main() { if( )    {  printf("Hello "); } else { printf("World !!!"); } return 0; } 在if里面请写入语句 使得打印出 hello world。......

2018-01-17
0

Reverse Linked List II

Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4,return 1->4->3->2->5->NULL...

2018-01-17
1

Leetcode 2 Add Two Numbers

题目没有说清楚,trick挺多,考察细心程度的水题吧。 You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their n......

2018-01-12
1

Leetcode 19 Remove Nth Node From End of List 超简洁代码

Given a linked list, remove the nth node from the end of list and return its head. For example, Given linked list: 1->2->3->4->5, and n = 2. After remo...

2018-01-12
1