知识点总结: 1-1至1-3和1-7:编写文本要在代码最前面加#include<stdio.h>; 1-4至1-6和1-8:注意换行要在printf("")的引号内加\n且{}内每行代码后都要加英文的分号 总体上:程序最后都要加上return 0; 遇到的问题: 一次成功的次数太少,每个实验都要重复 ...
分类:
其他好文 时间:
2016-09-14 10:59:26
阅读次数:
118
这种方法并没有使用严格意义上的构造函数,接住原型可以基于已有的对象创建新对象,同时还不比因此创建自定义对象, function object(o){ function F(){}; F.prototype=o; return new F();} 克罗克福德主张的这种原形式继承,在object内部,先 ...
分类:
其他好文 时间:
2016-09-14 09:37:52
阅读次数:
110
Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the arr ...
分类:
其他好文 时间:
2016-09-14 09:30:54
阅读次数:
117
Write a function that takes a string as input and reverse only the vowels of a string. Example 1: Given s = "hello", return "holle". Example 2: Given ...
分类:
其他好文 时间:
2016-09-14 08:24:37
阅读次数:
140
Given a binary tree, return all root-to-leaf paths. For example, given the following binary tree: All root-to-leaf paths are: Credits:Special thanks t ...
分类:
其他好文 时间:
2016-09-14 07:17:24
阅读次数:
146
Given a linked list, swap every two adjacent nodes and return its head. For example,Given 1->2->3->4, you should return the list as 2->1->4->3. Your a ...
分类:
其他好文 时间:
2016-09-14 01:40:38
阅读次数:
113
知识点:本次编程运用到的格式 #include<stdio.h> int main(void) { printf(); return 0; } 过程:1-3、没什么问题,就是注意字符的输入要正确。 4-6、格式上位置的错误,稍微调整一下就好了。 7、注意字符的输入,别输错,别输漏。 8、符号的间距不 ...
分类:
其他好文 时间:
2016-09-14 00:19:15
阅读次数:
100
#include<stdio.h>int main(){ printf("Hello World!!!/n"); return 0;} #include<stdio.h>int main(){ int i,sum=0; for(i=1;i<=100;i++) {sum=sum+i; } printf ...
分类:
其他好文 时间:
2016-09-14 00:12:46
阅读次数:
154
package addBinary67;/* Given two binary strings, return their sum (also a binary string).For example,a = "11"b = "1"Return "100". */public class Solut ...
分类:
编程语言 时间:
2016-09-13 22:26:32
阅读次数:
159
网上有很多人探讨Java中异常捕获机制try...catch...finally块中的finally语句是不是一定会被执行?很多人都说不是,当然他们的回答是正确的,经过我试验,至少有两种情况下finally语句是不会被执行的: (1)try语句没有被执行到,如在try语句之前就返回了,这样final... ...
分类:
编程语言 时间:
2016-09-13 22:25:31
阅读次数:
221