为了账号安全,请及时绑定邮箱和手机立即绑定

编写一个函数,要求把顺序表A中的数据元素序列逆置后存储到顺序表B中

编写一个函数,要求把顺序表A中的数据元素序列逆置后存储到顺序表B中

黑灬白 2014-10-03 12:49:57
编写一个函数,要求把顺序表A中的数据元素序列逆置后存储到顺序表B中
查看完整描述

1 回答

?
阿旭_

TA贡献217条经验 获得超353个赞

package com.abc.ccc;

import java.util.Arrays;

public class Test {
	public static void main(String[] args) {
		String[] table = new String[] { "A", "B", "C","*", "1", "2", "3" };
		System.out.println("逆序前:" + Arrays.toString(table));
		reversedOrder(table);// 开始逆序
		System.out.println("逆序后:" + Arrays.toString(table));
	}

	/**
	 * 编写一个函数,要求把顺序表A中的数据元素序列逆置后存储到顺序表B中
	 * 
	 * @param table
	 *            要逆序的表
	 */
	public static void reversedOrder(String[] table) {
		for (int i = 0; i < table.length / 2; i++) {
			String t = table[i];
			table[i] = table[table.length - 1 - i];
			table[table.length - 1 - i] = t;
		}
	}
}

//img1.sycdn.imooc.com//57a423b100016ee702940133.jpg

查看完整回答
反对 回复 2016-08-05
  • 1 回答
  • 0 关注
  • 5112 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信