1

创建并返回一个新数组,它是作为参数传递的数组的反向副本。

我的代码如下。我被算法困住了?这是一道考试题,但现在考试结束了。

import java.util.*;

public class Q4_ArrayReverse
{
   public static String[] reverse( String[] in )
   {
      String[] out = new String[ in.length ];
      reverse( in, out, 0 );
      return out;
   }
   ///////////////////////////////////////////////////////////
   //
   // Given an input array, an output array and an index,
   //    copy the element at the index offset of the input array
   //    to the appropriate reversed position in the output array.
   //    i.e. in[ 0 ] -> out[ n - 1 ]
   //         in[ 1 ] => out[ n - 2 ]
   //            etc.
   //    After doing the copy for index, recurse for index + 1
   //    Be sure to quit when you get to the end of the array.
   //
   //////////////////////////////////////////////////////////
   static void reverse( String[] in, String[] out, int index )
   {







   }
4

1 回答 1

1

在您的第二个(当前为空白)方法中,您将希望在索引处交换元素,index并将in.length - index - 1它们放入新out数组中。然后当然你想为 做同样的事情index + 1,除非你在数组的中间,在这种情况下你已经完成并且可以返回。

if (index == array.length / 2)  // i.e. 1 position past the middle
    return

out[index] = in[in.length - index - 1];
out[in.length - index - 1] = in[index];

reverse(in, out, index+1);
于 2013-04-25T23:34:41.103 回答