关于java递归的异常,求高手解决

问题描述

packagestolen;importjava.io.*;publicclassStolen{/****/privateintnumber=9000;//生成个数privatelongrandom[]=newlong[this.number];publiclongCreate(){return(long)(Math.random()*9000+1000);///*101位数,*1002位数...}publicvoidWrite(){Filefile=newFile("c:/random.txt");}publicvoidisSame(inti){booleanblean=false;for(intk=0;k<i;k++){if(this.random[i]==this.random[k]){this.random[i]=this.Create();blean=true;}if(blean){break;}}if(blean){this.isSame(i);}}publicstaticvoidmain(Stringargs[]){Stolenstolen=newStolen();for(inti=0;i<stolen.number;i++){stolen.random[i]=stolen.Create();if(i>0){stolen.isSame(i);}}for(intk=0;k<stolen.number;k++){System.out.println(stolen.random[k]);}System.out.println(stolen.random.length);}}

解决方案

解决方案二:
number=8994时勉强可以出结果,9000时就不行了,是我的程序问题,还是默认堆栈大小不够?
解决方案三:
解释一下你的程序想干什么。否则别人得去猜。
解决方案四:
程序:随即生成1000-9999的全部数字,而且要唯一算法:就是随即生成一个1000-9999的数,放到数组里,为了每次生成的数都唯一,我就遍历整个数组进行比较,找到相同的就再生成一个,然后再重头比较
解决方案五:
报什么错?
解决方案六:
这样应该可以,你试试吧publicclassmyrandom{publicstaticvoidmain(String[]args){//先生成1000~9999的随机数,保证唯一int[]array=newint[9000];inti=0;//赋初值,1000~9999for(i=0;i<array.length;i++)array[i]=i+1000;//每次生成一个随机数r,交换array[r]和array[i]for(i=array.length-1;i>=0;i--){//生成[0,i]之间的随机数,当做下标intr=(int)(Math.random()*(i+1));//交换array[r]和array[i]inttmp=array[r];array[r]=array[i];array[i]=tmp;}for(inte:array)System.out.printf("%d",e);}}

解决方案七:
解决了,谢谢

时间: 2024-10-01 00:12:45

关于java递归的异常,求高手解决的相关文章

springmvc-SpringMVC整合hessian出现异常,求高手解决!!

问题描述 SpringMVC整合hessian出现异常,求高手解决!! 异常信息:严重: Servlet.service() for servlet spring threw exceptionjava.lang.ClassNotFoundException: com.caucho.hessian.client.HessianConnectionException at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappCl

tomcat启动报错-空web工程启动tomcat为什么报错?求高手解决

问题描述 空web工程启动tomcat为什么报错?求高手解决 严重: StandardServer.await: create[localhost:8005]: java.net.BindException: Cannot assign requested address: JVM_Bind at java.net.PlainSocketImpl.socketBind(Native Method) at java.net.PlainSocketImpl.bind(Unknown Source)

求高手解决struts2问题

问题描述 tomcat运行时出现如下错误:2010-10-2413:59:32org.apache.catalina.core.StandardContextfilterStart严重:Exceptionstartingfilterstruts2Class:com.opensymphony.xwork2.spring.SpringObjectFactoryFile:SpringObjectFactory.javaMethod:getClassInstanceLine:209-com/opensy

求高手解决:0xC0000005: 写入位置 0x00000064 时发生访问冲突

问题描述 求高手解决:0xC0000005: 写入位置 0x00000064 时发生访问冲突 typedef int (_stdcall*FUNA)(unsigned short Codechar* lpDataint lpDatalen);typedef int (_stdcall*FUNB)(char *lpBuf); const char * GetProtocol = ""GetProtocolData"";const char * GetReport =

class-为什莫总是提示 ThinkModel:relation方法不存在! 求高手解决

问题描述 为什莫总是提示 ThinkModel:relation方法不存在! 求高手解决 <?php namespace AdminModel; use ThinkModelRelationModel; class UserModel extends RelationModel { Protected $tableName = 'user';//定义主表名称 //定义关联关系 Protected $_link=array( 'role' =>array( 'mapping_type' =>

sybase启动时遇到的问题!!!!求高手解决,,,急急急!!! xp系统

问题描述 sybase启动时遇到的问题!!!!求高手解决,,,急急急!!! xp系统 00:00:00000:00000:2015/03/10 09:09:00.95 kernel SySAM: Using licenses from: D:sybasedbSYSAM-2_0licenses 00:00:00000:00000:2015/03/10 09:09:01.65 kernel SySAM: Checked out license for 2 ASE_CORE (2013.1231/pe

树形 递归-java 递归报错 求大神帮忙

问题描述 java 递归报错 求大神帮忙 private List<Post> getPostLower(List<Post> PostTops){ List<Post> postAll=new ArrayList<Post>(); // 上级 for(Post post:PostTops){ //查询到下级 List<Post> posts=basService.queryPostByParentId(post.getPostId()); //

.net-进入后台更新文件显示“Server Error in &amp;amp;#39;/&amp;amp;#39; Application”求高手解决

问题描述 进入后台更新文件显示"Server Error in '/' Application"求高手解决 ExecuteScalar requires an open and available Connection. The connection's current state: Broken. Description: An unhandled exception occurred during the execution of the current web request.

求高手解决C#编程,谢谢啊

问题描述 求高手解决C#编程,谢谢啊 namespace A { public class EnumTest { enum Days { saturday = 0, sunday, monday, tuesday, wednesday, thursday, friday, }; [FlagsAttribute] enum Colors { red, blue, yellow }; static void Main() { Type weekdays = typeof(Days); Console

html 网站 js-在一个文本框中输入一个数字时候前边自动加了一个1是怎么回事???求高手解决

问题描述 在一个文本框中输入一个数字时候前边自动加了一个1是怎么回事???求高手解决 比如输入一个"5"时,自动变成了"15",求高手解答,感激不尽~~~~~ 解决方案 很明显,加的这个1是字符串"1",一步一步向上推,你肯定有个代码变量在获取的值前+"1"; 解决方案二: 你可以在文本框值变更时检查它的值 断点仔细检查下代码 解决方案三: 输入5 变成15前面是不是有1接着的连接符?