最新文章列表

Problem20

package com.yao.shuimu.euler; import java.util.ArrayList; import java.util.List; /** * Created by IntelliJ IDEA. * User: shuimuqinghua77 * Date: 11-12-15 * Time: 下午1:25 */ public clas ...
水木清华77 评论(0) 有804人浏览 2011-12-15 14:09

Problem19

package com.shui.mu.yao.io.algorithm; import java.util.Calendar; /** * * @author shuimuqinghua77 @date 2011-12-9上午09:58:49 */ public class Problem19 { public static void main(String[] ...
水木清华77 评论(0) 有719人浏览 2011-12-09 14:07

Problem18/Problem67

package com.yao.Algorithms; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.Reader; /** * * @author shuimuqinghua77 @date 2011-12-4 * */ ...
水木清华77 评论(0) 有895人浏览 2011-12-04 20:20

Problem16

package com.shui.mu.yao.io.algorithm; /** * * @author shuimuqinghua77 @date 2012-12-02 * */ public class Problem16 { public static void main(String[] args) throws Exception { by ...
水木清华77 评论(0) 有420人浏览 2011-12-02 15:32

Algorithm 06:删数问题

问题:键盘输入一个高精度的正整数N(N<=240位),去掉任意S个数字后剩下的数字按原来左右次序组成一个新的正整数。编程实现对给定的N和S,寻找一种解决方案,使得剩下的数最小。 例如,给定的N=178543,S=4,则得到的结果为13 答:实现代码如下: /** * @author: YuHuang * @date: 2011-11-30 * @summary: ...
YuHuang.Neil 评论(0) 有1753人浏览 2011-11-30 12:16

Problem15

package com.yao.Algorithms; import java.util.HashMap; import java.util.Map; /** * * @author shuimuqinghua77 @date 2011-11-29 * */ public class Problem15 { private static Map<String, ...
水木清华77 评论(0) 有533人浏览 2011-11-29 23:28

递归求乘方

递归求一个数的乘方代码: 仅仅是示例而已,实际应用中应该使用Java类库方法。   /** * calculate power of a number recursively. * @author Sun Kui */ public class Power { private static int count = 1; public static vo ...
sunwinner 评论(0) 有1701人浏览 2011-11-29 22:27

Problem14

package com.shui.mu.yao.io.algorithm; public class Problem14 { public static void main(String[] args) { long starttime = System.currentTimeMillis(); int start = 640000;/**10:123456789往上翻20 ...
水木清华77 评论(0) 有709人浏览 2011-11-29 11:37

Problem13_1

package yao.taobao.jj; public class Problem13 { public static void main(String[] args) { long start = System.currentTimeMillis(); String str = "37107287533902102798797998220837590246510 ...
水木清华77 评论(0) 有589人浏览 2011-11-21 14:07

KMP Algorithm

package com.tobaidu.algorithm.kmp; public class KMP { static int[] P; /** * 对子串加以预处理,从而找到匹配失败时子串回退的位置 * * @param B * ,待查找子串的char数组 * @return */ public static in ...
chenwq 评论(0) 有986人浏览 2011-11-11 14:57

Java面试问题之五十

Question: Provide a function to accept an integer array and computes the maximum consecutive sum. If the maximum sum is negative, this function returns zero. 问题:请一个整数数组的最大连续和,若和小于零则返回零。 实现代码: ...
YuHuang.Neil 评论(0) 有952人浏览 2011-11-07 21:27

Problem12

package com.shui.mu.yao.io.algorithm; import java.util.ArrayList; import java.util.List; public class Problem12 { public static void main(String[] args) { long start = System.currentTimeM ...
水木清华77 评论(0) 有711人浏览 2011-11-07 20:04

Problem10

package com.shui.mu.yao.io.algorithm; import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * * @author shuimuqinghua77 @date 2011-11-3下午07:44:42 */ /** * Th ...
水木清华77 评论(0) 有414人浏览 2011-11-03 20:14

给定一个整数数组,检测是否存在一个和为零的子数组

问题:给定一个整数数组,写一个算法实现判断是否存在一个和为零的子数组。 答:算法思路:计算数组的前缀和,然后将前缀和进行排序,如果存在连续两个元素相同的情况即存在一个和为零的子数组,否则不存在。 算法的代码实现: // // main.cpp // MyProjectForCPP // // Created by labuser on 11/2/11. // Copy ...
YuHuang.Neil 评论(1) 有2410人浏览 2011-11-03 16:22

Problem9

package com.shui.mu.yao.io.algorithm; import java.util.Arrays; /** * * @author shuimuqinghua77 @date 2011-11-3下午03:31:30 */ /** * A Pythagorean triplet is a set of three natural numbers ...
水木清华77 评论(0) 有748人浏览 2011-11-03 16:04

将一个整数拆分成两个整数的平方和算法

问题:请使用C/C++写一个程序实现将一个整数拆分成两个整数的平方和,把所有的可能的组合都要计算出来。 答:假定输入的整数为n,则扫描1-(n的平方根)之间的整数,令row=1,column=(int)(sqrt((double)given)+0.5),使得row*row+column*column=n的数输出即可。 代码如下所示: // // main.cpp // MyPr ...
YuHuang.Neil 评论(0) 有6128人浏览 2011-11-03 15:26

Problem8

package com.shui.mu.yao.io.algorithm; /** * Find the greatest product of five consecutive digits in the 1000-digit number. 73167176531330624919225119674426574742355349194934 96983520312774506 ...
水木清华77 评论(0) 有591人浏览 2011-11-03 12:38

Problem7

package com.shui.mu.yao.io.algorithm; import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * * @author shuimuqinghua77 @date 2011-11-3上午10:56:33 * */ /** ...
水木清华77 评论(0) 有456人浏览 2011-11-03 11:25

最近博客热门TAG

Java(141747) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) HTML(59043) JavaScript(54918) .net(54785) Web(54513) 工作(54116) Linux(50906) Oracle(49876) 应用服务器(43288) Spring(40812) 编程(39454) Windows(39381) JSP(37542) MySQL(37268) 数据结构(36423)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics