curtishd 896d9a64f6
Refine kotlin code (#1241)
* style(kotlin): Improve kotlin codes readability.

* remove redundant quotes.

* style(kotlin): improve codes readability.

* style(kotlin): refine kotlin codes.

* Create kotlin.yml

* Create kotlin.yml

* Delete .github/workflows/kotlin

* Delete .github/workflows/main.yml

* Create kotlin.yml

* Update kotlin.yml

* Delete .github/workflows/kotlin.yml

* Create hello_world_workflow.main.kts

* Delete .github/workflows/hello_world_workflow.main.kts

* remove empty line
2024-04-09 16:26:58 +08:00

30 lines
786 B
Kotlin

/**
* File: Vertex.kt
* Created Time: 2024-01-25
* Author: curtishd (1023632660@qq.com)
*/
package utils
/* 顶点类 */
class Vertex(val value: Int) {
companion object {
/* 输入值列表 vals ,返回顶点列表 vets */
fun valsToVets(vals: IntArray): Array<Vertex?> {
val vets = arrayOfNulls<Vertex>(vals.size)
for (i in vals.indices) {
vets[i] = Vertex(vals[i])
}
return vets
}
/* 输入顶点列表 vets ,返回值列表 vals */
fun vetsToVals(vets: MutableList<Vertex?>): MutableList<Int> {
val vals = mutableListOf<Int>()
for (vet in vets) {
vals.add(vet!!.value)
}
return vals
}
}
}