mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-04 22:28:40 +08:00 
			
		
		
		
	* ci(kotlin): Add workflow file. * Update kotlin.yml * style(kotlin): value -> _val --------- Co-authored-by: Yudong Jin <krahets@163.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			784 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			784 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
/**
 | 
						|
 * File: Vertex.kt
 | 
						|
 * Created Time: 2024-01-25
 | 
						|
 * Author: curtishd (1023632660@qq.com)
 | 
						|
 */
 | 
						|
 | 
						|
package utils
 | 
						|
 | 
						|
/* 顶点类 */
 | 
						|
class Vertex(val _val: 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!!._val)
 | 
						|
            }
 | 
						|
            return vals
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |