1 package com.lw.leet5; 2 3 /** 4 * @ClassName:Solution 5 * @Description: 6 * Insertion Sort List 7 * Sort a linked list using ...
分类:
其他好文 时间:
2014-08-20 22:36:32
阅读次数:
187
先把Ubuntu 12.04 更新一下
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
删除 Ebtables 包
sudo aptitude purge ebtables
从安装源安装Open vSwitch (OVS)
sudo apt-get install ap...
分类:
其他好文 时间:
2014-08-20 19:42:02
阅读次数:
226
Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.1st (7 tries)class Solution {public: int maxPoin...
分类:
其他好文 时间:
2014-08-20 14:04:02
阅读次数:
234
Problem Description
After inventing Turing Tree, 3xian always felt boring when solving problems about intervals, because Turing Tree could easily have the solution. As well, wily 3xian made lots of n...
分类:
其他好文 时间:
2014-08-20 12:36:32
阅读次数:
382
模拟汉诺塔的移动过程,CC答案的面向对象的太烦,写个以前学的经典的。public class Solution { public void move(int n, char a, char b, char c) { if (n == 1) { System....
分类:
其他好文 时间:
2014-08-20 01:19:25
阅读次数:
184
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the". 1 public class Solution { 2 ....
分类:
编程语言 时间:
2014-08-19 23:43:45
阅读次数:
209
Description
Consider equations having the following form:
a1x13+ a2x23+ a3x33+ a4x43+ a5x53=0
The coefficients are given integers from the interval [-50,50].
It is consider a solution a syste...
分类:
其他好文 时间:
2014-08-19 22:30:25
阅读次数:
218
这个问题看了看,没看懂,搁置。
约瑟夫环问题(Josephus)
用户输入M,N值,从1至N开始顺序循环数数,每数到M输出该数值,直至全部输出。写出C程序。(约瑟夫环问题 Josephus)
解法一(My Solution):
思想:建立一个有N个元素的循环链表,然后从链表头开始遍历并记数,如果计数i==m(i初始为1)踢出元素,继续循环,当当前元素与下一元素相同时退出循环。
代...
分类:
其他好文 时间:
2014-08-19 14:33:14
阅读次数:
199
1A! This is actually a basic question in Combinatorics: if at digit[k] = n, it contributes (k-1)! * n to the targeted index.class Solution {public: .....
分类:
其他好文 时间:
2014-08-19 14:22:04
阅读次数:
169
Given a collection of numbers, return all possible subclasses. 1 public class Solution { 2 public List> permute(int[] num) { 3 ArrayList...
分类:
其他好文 时间:
2014-08-19 09:22:03
阅读次数:
198