java 数组习题

2.写一个函数,返回一个整数数组的平均值

package com.fxm.day05.test;
public class Day05test{public static void main(String[] args){int[] a1 = {2,9,5,7,4};int n = average(a1);System.out.println(n);}public static int average(int[] a){int sum = 0;for(int i = 0; i < a.length; i++){sum += a[i];}int age = sum/a.length;return age;}
}

3.写一个函数接受一个整数数组a,以及一个整数n,如果n在数组中存在,则返回n出现的首 次的下标;如果不存在,则返回­1。

package com.fxm.day05.test;
public class Day05Test3{public static void main(String[] args){int[] a = {2,4,5,6,8};int n = 7;int n1 = test3(a,n);System.out.println(n1);}public static int test3(int[] a,int b){for(int i = 0; i < a.length; i++){if(a[i] == b){System.out.println("找到了");return i;}}return -1;}
}

4.写一个函数接受一个数组,打印输出数组中的大值和小值。

package com.fxm.day05.test;
public class Day05Test4{public static void main(String[] args){int[] a = {3,5,1,7,5,8};test4(a);}public static void test4(int[] a){int max = a[0];int min = a[0];for(int i = 0; i < a.length; i++){if(max < a[i]){max = a[i];}if(min > a[i]){min = a[i];}}System.out.println(max);System.out.println(min);} 
}

5.写一个函数接受一个数组,把这个数组中所有元素顺序进行颠倒。

package com.fxm.day05.test;
public class Day05Test5{public static void main(String[] args){int[] a = {2,4,6,8,9};test5(a);}public static void test5(int[] a){for(int i = a.length - 1; i >= 0; i--){System.out.println(a[i]);}}
}

7.将上面所有习题使用可变长参数替换数组实现

package com.fxm.day05.test;
public class Day05Test6{public static void main(String[] args){int[] a = {2,9,5,7,4};int n1 = average(a);System.out.println(n1);int n = 7;int n2 = test3(n,a);System.out.println(n2);test4(a);test5(a);}public static int average(int... a){int sum = 0;for(int i = 0; i < a.length; i++){sum += a[i];}int age = sum/a.length;return age;}public static int test3(int b,int... a){for(int i = 0; i < a.length; i++){if(a[i] == b){System.out.println("找到了");return i;}}return -1;}public static void test4(int... a){int max = a[0];int min = a[0];for(int i = 0; i < a.length; i++){if(max < a[i]){max = a[i];}if(min > a[i]){min = a[i];}}System.out.println(max);System.out.println(min);}public static void test5(int... a){for(int i = a.length - 1; i >= 0; i--){System.out.println(a[i]);}}
}

9.完成数组的冒泡排序算法
给定一个数组:int[] a = {1,3,2,7,5} 利用冒泡排序对其按照从小到大的顺序排序,然后输出结果。

package com.fxm.day05.test;
public class Day05Test9{public static void main(String[] args){int[] a = {1,3,2,7,5};for(int i = 1; i < a.length; i++){for(int j = 0; j < a.length-i; j++){if(a[j] > a[j+1]){int temp = a[j];a[j] = a[j+1];a[j+1] = temp;}}}for(int n = 0; n < a.length; n++){System.out.print(a[n]);}}
}

10.使用第二种算法对数组进行排序

package com.fxm.day05.test;
public class Day05Test10{public static void main(String[] args){int[] a = {1,3,2,7,5};for(int i = 0; i < a.length; i++){int m = i;for(int j = i + 1; j < a.length; j++){if(a[j] < a[m]){m = j;}}if(i != m){int temp = a[i];a[i] = a[m];a[m] = temp;}}for(int n = 0; n < a.length; n++){System.out.print(a[n]);}}
}

11.已知一个二维数组A 表示一个矩阵,求 其中, 表示矩阵的转置。矩阵转置的含义:表示把一个矩阵行列互换。

package com.fxm.day05.test;
public class Day05Test11{public static void main(String[] args){int[][] a = {{1,2,3},{4,5,6}};int[][] b = new int[3][2];for(int i = 0; i < a.length; i++){for(int j = 0; j < a[i].length; j++){b[j][i] = a[i][j];}}for(int i = 0; i < b.length; i++){for(int j = 0; j < b[i].length; j++){System.out.print(b[i][j]+"   ");}System.out.println();}}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/440150.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

机器学习笔记(1):Introduction

目录 1&#xff09;welcome 2&#xff09;What is Machine Learning 3&#xff09;Supervised Learning 4&#xff09;Unsupervised Learning 1&#xff09;welcome 第一个视频主要介绍了机器学习目前的案例&#xff0c;主要有&#xff1a;数据库挖掘、医疗记录、生物工程…

【POJ - 3352】Road Construction(Tarjan,边双连通分量)

题干&#xff1a; Its almost summer time, and that means that its almost summer construction time! This year, the good people who are in charge of the roads on the tropical island paradise of Remote Island would like to repair and upgrade the various roads…

C++匿名命名空间

当定义一个命名空间时&#xff0c;可以忽略这个命名空间的名称&#xff1a; namespce {char c;int i;double d;}编译器在内部会为这个命名空间生成一个唯一的名字&#xff0c;而且还会为这个匿名的命名空间生成一条using指令。所以上面的代码在效果上等同于&#xff1a;namespa…

机器学习简易入门-附推荐学习资料

目录 &#xff08;1&#xff09;机器学习正规学习路线 &#xff08;2&#xff09;机器学习快速入门 &#xff08;3&#xff09;总结 感谢黄海广博士的分享 原创&#xff1a; 机器学习初学者 机器学习初学者 今天 机器学习如何入门&#xff1f;目前没有明确的答案。本站面向…

python 习题

使用蒙特-卡罗方法计算圆周率近似值 蒙特-卡罗方法是一种通过概率来得到问题近似解的方法。假设又一块边长为2的正方形木板&#xff0c;上面画一个单位圆&#xff0c;然后随意往木板上扔飞镖&#xff0c;落点坐标(x,y)必然在木板上(更多的是落在单位圆内)&#xff0c;如果扔的…

C++11中的std::function

原文地址&#xff1a;http://www.jellythink.com/archives/771 看看这段代码 先来看看下面这两行代码&#xff1a; std::function<void(EventKeyboard::KeyCode, Event*)> onKeyPressed; std::function<void(EventKeyboard::KeyCode, Event*)> onKeyReleased; 这两…

【HDU - 3394】Railway(点双连通分量,Tarjan算法,思维tricks)

题干&#xff1a; There are some locations in a park, and some of them are connected by roads. The park manger needs to build some railways along the roads, and he would like to arrange tourist routes to each circuit. If a railway belongs to more than one …

飞机大战(简易版)

一、游戏分析 飞机大战中的主要“角色”有&#xff1a; 1.英雄 2.敌方飞机 3.英雄发射的子弹 我们需要控制的有&#xff1a; 1.绘制屏幕内的角色 2.控制角色的逻辑&#xff0c;比如&#xff1a;敌方飞机与我方飞机的碰撞检测&#xff0c;我方飞机发射的子弹与敌方飞机之间的碰撞…

在Ubuntu上安装Keras深度学习框架

目录 1&#xff09;安装pip 2&#xff09;安装Python科学套件 3&#xff09;安装TensorFlow 4&#xff09;安装keras 5&#xff09;安装Jupyter Notebook 6&#xff09;运行Keras 本文介绍如何在Ubuntu上安装Keras深度学习框架。 1&#xff09;安装pip 安装pip包&#…

【POJ - 1523】SPF(Tarjan求割点,求分割成的连通块数,模板题,tricks)

题干&#xff1a; Consider the two networks shown below. Assuming that data moves around these networks only between directly connected nodes on a peer-to-peer basis, a failure of a single node, 3, in the network on the left would prevent some of the still…

C++11 FAQ中文版:std::function 和 std::bind

std::function 和 std::bind 标准库函数bind()和function()定义于头文件中&#xff08;该头文件还包括许多其他函数对象&#xff09;&#xff0c;用于处理函数及函数参数。bind()接受一个函数&#xff08;或者函数对象&#xff0c;或者任何你可以通过”(…)”符号调用的事物&am…

Java 习题(面向对象)

1.&#xff08;面向对象基础&#xff09;写一个Worker 类&#xff0c;并创建多个Worker 对象。 为Worker 类添加四个属性&#xff0c; <1>int 类型的id&#xff0c;表示工人的编号&#xff1b; <2>String 类型的name&#xff0c;表示工人的姓名&#xff1b; <3…

机器学习笔记(2):单变量线性回归

目录 1&#xff09;Model representation 2&#xff09;Cost function 3&#xff09;Cost function intuition 1 4&#xff09;Cost function intuition2 5&#xff09;Gradient descent 6&#xff09;Gradient descent intuition 7&#xff09;Gradient descent for li…

指针右左法则----复杂指针解析

其实如果写得出&#xff08;其实不难&#xff09;指针和数组的声明的EBNF的话&#xff0c;那么直接看就可以反应过来了…… 右左法则是一个既著名又常用的方法。不过&#xff0c;右左法则其实并不是C标准里面的内容&#xff0c;它是从C标准的声明规定中归纳出来的方法。C标准的…

【POJ - 3694】Network(对dfn求lca 或 缩点+lca 或 边双连通+并查集)

题干&#xff1a; 网络管理员管理大型网络。该网络由N台计算机和成对计算机之间的M链路组成。任何一对计算机都通过连续的链接直接或间接连接&#xff0c;因此可以在任何两台计算机之间转换数据。管理员发现某些链接对网络至关重要&#xff0c;因为任何一个链接的故障都可能导…

安装VMware tools

点击“虚拟机” 安装VMware tools提取图中文件到“下载” 提取登入root 进入 cd 下载/vmware-tools-distrib 执行 ./vmware-install-pl 输入yes或者点击“enter”出现图中&#xff0c;即为成功安装

Keras入门实战(1):MNIST手写数字分类

目录 1)首先我们加载Keras中的数据集 2&#xff09;网络架构 3&#xff09;选择编译(compile参数) 4&#xff09;准备图像数据 5) 训练模型 6&#xff09;测试数据 前面的博客中已经介绍了如何在Ubuntu下安装Keras深度学习框架。 现在我们使用 Keras 库来学习手写数字分…

什么是BNF EBNF 巴科斯范式及其扩展 BNF Augmented BNF

什么是BNF范式,什么又是EBNF范式? 巴科斯范式及其扩展 BNF & Augmented BNF 什么是巴科斯范式&#xff1f;   巴科斯范式(BNF: Backus-Naur Form 的缩写)是由 John Backus 和 Peter Naur 首先引入的用来描述计算机语言语法的符号集。   现在&…

root 进入ssh 出现问题

用root输入下面命令&#xff0c;一直让输入密码&#xff0c;并提示错误 ssh localhost那是因为系统默认禁止root用户登录ssh 首先&#xff0c;CtrlC退出密码输入界面&#xff1a;然后输入&#xff1a;su - 然后&#xff0c;编辑sshd_config文件&#xff0c;输入&#xff1a;…

【BZOJ - 2574】[Poi1999] Store-Keeper(点双连通分量,求割点,记忆化bfs)

题干&#xff1a; 有一个仓库被分成n*m 个矩形区域&#xff0c;如果两个区域有一条公共边&#xff0c;则被认为这两个区域相邻。包裹都放在一个区域中&#xff0c;剩余的区域或者空闲或者被集装箱占有&#xff0c;这是因为集装箱太重&#xff0c;仓库管理员不能将集装箱搬走。…