mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-10-31 18:37:48 +08:00 
			
		
		
		
	 d484b08c15
			
		
	
	d484b08c15
	
	
	
		
			
			* Update bucket_sort.c * Fix the comments in quick_sort.c * Update the announce badge * Sync zh and zh-hant versions * Update contributors list. * Sync zh and zh-hant versions. * Sync zh and zh-hant versions. * Update the contributors list * Update the version number
		
			
				
	
	
		
			36 lines
		
	
	
		
			893 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			893 B
		
	
	
	
		
			Kotlin
		
	
	
	
	
	
| /**
 | |
|  * File: built_in_hash.kt
 | |
|  * Created Time: 2024-01-25
 | |
|  * Author: curtishd (1023632660@qq.com)
 | |
|  */
 | |
| 
 | |
| package chapter_hashing
 | |
| 
 | |
| import utils.ListNode
 | |
| 
 | |
| /* Driver Code */
 | |
| fun main() {
 | |
|     val num = 3
 | |
|     val hashNum = num.hashCode()
 | |
|     println("整數 $num 的雜湊值為 $hashNum")
 | |
| 
 | |
|     val bol = true
 | |
|     val hashBol = bol.hashCode()
 | |
|     println("布林量 $bol 的雜湊值為 $hashBol")
 | |
| 
 | |
|     val dec = 3.14159
 | |
|     val hashDec = dec.hashCode()
 | |
|     println("小數 $dec 的雜湊值為 $hashDec")
 | |
| 
 | |
|     val str = "Hello 演算法"
 | |
|     val hashStr = str.hashCode()
 | |
|     println("字串 $str 的雜湊值為 $hashStr")
 | |
| 
 | |
|     val arr = arrayOf<Any>(12836, "小哈")
 | |
|     val hashTup = arr.contentHashCode()
 | |
|     println("陣列 ${arr.contentToString()} 的雜湊值為 $hashTup")
 | |
| 
 | |
|     val obj = ListNode(0)
 | |
|     val hashObj = obj.hashCode()
 | |
|     println("節點物件 $obj 的雜湊值為 $hashObj")
 | |
| } |