路由追踪traceroute

Tags: Network  

traceroute 有使用两种:使用ICMP的和使用UDP的。Microsoft使用ICMP,所以win95上发出的traceRT应使用的是ICMP,但我没有用 sniffer查过;其它包括unix和cisco router都使用UDP.

leon Published by 2015-04-19 23:09

Detail »

Print right view of binary tree

Tags: Algorithm   LeetCode  

Given a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bottom.

For example:
Given the following binary tree,

   1            <---
 /   \
2     3         <---
 \     \
  5     4       <---

 

You should return [1, 3, 4].

Credits:
Special thanks to @amrsaqr for adding this problem and creating all test cases.

leon Published by 2015-04-04 02:45

Detail »

Number times

Tags: Algorithm  

Single Number I, all twice except one single

Single Number II All numbers occurs triple times except one once

Single Number II All numbers occurs triple times except one twice

Single Number III  all twice numbers, except two single Number

leon Published by 2015-03-03 00:46

Detail »