virtualbox 4.3.10
不能mount共享文件夹,这是一个bug,参考如下链接https://www.virtualbox.org/ticket/12879执行以下命令即可:sudo
ln -s /opt/VBoxGuestAdditions-4.3.10/lib/VBoxGuestAd...
分类:
其他好文 时间:
2014-07-22 23:07:55
阅读次数:
334
下载Firefox 29.0% cd ~/Downloads% sudo cp
firefox-29.0.tar.bz2 /opt% cd /opt% sudo tar -xvjf firefox-29.0.tar.bz2然后% sudo
ln -sf /opt/firefox/firefox /....
分类:
其他好文 时间:
2014-07-22 23:06:13
阅读次数:
311
原题地址:http://oj.leetcode.com/problems/reorder-list/题意:Given
a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You
must do this...
分类:
编程语言 时间:
2014-05-01 15:37:03
阅读次数:
441
Given a singly linked list L: L0→L1→…→Ln-1→Ln,
reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…
You must do this in-place without altering the nodes' values.
For example,
Given {1,2,3,4}, reorder it to ...
分类:
其他好文 时间:
2014-04-29 13:42:21
阅读次数:
427