昨天回答了Scott Hanselman在他清单上关于C#那部分的题目,.Net 程序员面试 C# 语言篇 (回答Scott Hanselman的问题),今天接着回答他在清单上列出的"每个写代码的人都应该知道"部分的题目。1.描述线程跟进程的区别(Describe the difference b....
分类:
Web程序 时间:
2015-10-14 17:58:55
阅读次数:
204
Requirement Specifications: An OxymoronAlan Greenblatt
Sudbury, Massachusetts, U.S.
gooD REqUIREMEnTS (R) describe how features of a product are going to solve particular existing or potential proble...
分类:
其他好文 时间:
2015-10-12 12:40:56
阅读次数:
258
教程:https://cnodejs.org/topic/516526766d38277306c7d277看着挺爽的。//同步var assert = require('assert');describe('Array', function(){ describe('#indexOf', funct...
分类:
其他好文 时间:
2015-10-11 00:28:42
阅读次数:
220
1、增加kafka分区 ./kafka-topics.sh--zookeeper192.168.2.70--alter--topicus_forward--partitions242、查看kafka的topic ./kafka-topics.sh--zookeeper192.168.2.70--list3、查看单个topic的分区,也可以不加topic ./kafka-topics.sh--zookeeper192.168.2.70--describe--topi..
分类:
其他好文 时间:
2015-10-09 18:24:14
阅读次数:
133
Writing .d.ts files When using an external JavaScript library, or new host API, you‘ll need to use a declaration file (.d.ts) to describe the shape of that library. This guide covers a few high-lev...
分类:
其他好文 时间:
2015-10-08 10:42:17
阅读次数:
385
在gitlab.com上面看到的,相当好用git describe --tags `git rev-list --tags --max-count=1`比如下面的项目:/cppwizard$ git tag -n10
v1.0.0 simplify console build
v1.1.0 use file.lsp in same folder
v1.2.0 ...
分类:
其他好文 时间:
2015-10-05 00:47:21
阅读次数:
193
10.2 How would you design the data structures for a very large social network like Facebook or Linkedln? Describe how you would design an algorithm to...
分类:
Web程序 时间:
2015-10-03 13:11:03
阅读次数:
229
/*Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. */#include #include#include#include#includeusing ...
分类:
其他好文 时间:
2015-09-26 14:35:28
阅读次数:
212
QuestionMergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.Solution 1 -- Merge SortWe can follow the meth...
分类:
其他好文 时间:
2015-09-22 06:41:04
阅读次数:
154
1 题目Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.2 思路当时看到这个题目就想到的是归并排序。好吧,但是,具体代码写不出来。题目给的是数组:publi...
分类:
其他好文 时间:
2015-09-14 22:41:57
阅读次数:
207