FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/Maths/AbsoluteMax.java at master · rcfgnu/Java · GitHub
rcfgnu
/
Java
Public
forked from
TheAlgorithms/Java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Java
/
Maths
/
AbsoluteMax.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
34 lines (30 loc) · 818 Bytes
Breadcrumbs
Java
/
Maths
/
AbsoluteMax.java
Copy path
File metadata and controls
34 lines (30 loc) · 818 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package
Maths
;
import
java
.
util
.
Arrays
;
/**
* description:
*
* <p>absMax([0, 5, 1, 11]) = 11, absMax([3 , -10, -2]) = -10
*/
public
class
AbsoluteMax
{
public
static
void
main
(
String
[]
args
) {
int
[]
testnums
= {-
2
,
0
,
16
};
assert
absMax
(
testnums
) ==
16
;
int
[]
numbers
= {
3
, -
10
, -
2
};
System
.
out
.
println
(
"absMax("
+
Arrays
.
toString
(
numbers
) +
") = "
+
absMax
(
numbers
));
}
/**
* get the value, return the absolute max value
*
* @param numbers contains elements
* @return the absolute max value
*/
public
static
int
absMax
(
int
[]
numbers
) {
int
absMaxValue
=
numbers
[
0
];
for
(
int
i
=
1
,
length
=
numbers
.
length
;
i
<
length
; ++
i
) {
if
(
Math
.
abs
(
numbers
[
i
]) >
Math
.
abs
(
absMaxValue
)) {
absMaxValue
=
numbers
[
i
];
}
}
return
absMaxValue
;
}
}
Back
|
FazBrowse Home
|
New Git URL