ko.wikipedia.org/wiki/%EB%A9%B1%EB%93%B1%EB%B2%95%EC%B9%99
๋ฉฑ๋ฑ๋ฒ์น, ๋ฉฑ๋ฑ์ฑ
์ฐ์ฐ์ ์ฌ๋ฌ๋ฒ ์ ์ฉํด๋ ๊ฒฐ๊ณผ๋ ๊ฐ์ ์ฑ์ง
๋ฉฑ๋ฑ์ฑ์ด ์๋ ํจ์๋ ๋ฉฑ๋ฑ ํจ์(idempotent function)๋ผ๊ณ ๋ถ๋ฆ
๋จํญ์ฐ์ฐ
๋จํญ์ฐ์ฐ f, ์ด๋ค ์งํฉ S์ ๋ชจ๋ ์์๋ x
f(f(x)) = f(x)
์ดํญ์ฐ์ฐ
์ดํญ์ฐ์ฐ โ , ์ด๋ค ์งํฉ S์ ๋ชจ๋ ์์ x
xโ x = x
ํ๋ก๊ทธ๋๋ฐ์์ ๋ฉฑ๋ฑ์ฑ
ํจ์๋ฅผ ์ฌ๋ฌ๋ฒ ํธ์ถํด๋ ํ ๋ฒ๋ง ํธ์ถํ ๊ฒ๊ณผ ๋์ผํ ๊ฒฐ๊ณผ๊ฐ ๋ฐํ๋๋ค.
mortoray.com/2014/09/05/what-is-an-idempotent-function/
์์
import kotlin.math.floor
fun main() {
val a = 10.3
println(floor(a)) // 10.0
println(floor(a)) // 10.0
}
import kotlin.math.floor
fun main() {
val a = 10.3
println(floor(a)) // 10.0
println(floor(floor(a))) // 10.0
}
'๋น ๊ตฌ๋ฉ ์ฑ์ฐ๊ธฐ' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[SonarQube] SonarQube ์ค์น ๊ทธ๋ฆฌ๊ณ ์ค์น ํ์ธ ์ฐ๋นํํ (0) | 2021.02.18 |
---|---|
[Java] Version ๊ต์ฒด (0) | 2021.02.18 |
[Library] Moshi Converter (0) | 2021.02.18 |
[Java] Class.java public boolean isAssignableFrom(Class<?> cls) (0) | 2021.02.17 |
[Kotlin] ::class.java (0) | 2021.02.17 |