数组翻转的一道题目

老赵博客里面的一道题目,以下是个人答案:

 1 /**
 2      * Besides this,stack could be used to solved it.
 3      * @param array
 4      * @param begin
 5      * @param end
 6      * @throws Exception
 7      */
 8     public static void Reverse(int[] array,int begin,int end) throws Exception{
 9         
10         if(array==null)
11             throw new NullPointerException("Array is null"); //not new Exception
12         if(array.length==0)
13             throw new ArrayIndexOutOfBoundsException("Array is empty"); //not new Exception
14         if(begin<0)
15             throw new ArrayIndexOutOfBoundsException("begin is less than 0"); //not new Exception
16         if(end<begin)
17             throw new ArrayIndexOutOfBoundsException("end is less than begin"); //not new Exception
18         //Missing this
19         if(end>array.length)
20             throw new Exception("end is larger than the length of array");
21         
22         //
23         while(end>begin){
24             int temp = array[begin];
25             array[begin]=array[end];
26             array[end]=temp;
27             
28             end--;
29             begin++;
30         }
31     }
  • 解法有很多,利用stack也可以,但交换的方法比较优雅
  • 参数的检验一定要到位。而且不要打印错误,要抛出异常。抛出的异常尽量精准,不要全抛出Exception
  • 进一步会考使用单元测试,提供测试用例

转载于:https://www.cnblogs.com/techyc/archive/2013/03/12/2956774.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值