"Batman"の翻訳 英語に:
辞書 日本-英語
例 (レビューされていない外部ソース)
| Batmanを検索する場合の例です | I'm not showing the values because they don't really matter for this example. |
| キーワードBatmanをlookupする必要があれば バケット1に向かい Batmanが見つかるまで このバケットの各項目にわたって反復します 基本的にこれはハッシュ関数を まったく行うことなく最初から開始する場合の | If I have a hash table where 3 keywords all go in bucket 1, if I want to look up the keyword Batman, I'm going to go to bucket 1 and iterate through each item in this bucket until I find Batman. |
| 通常のリストと同じものです そしてBatmanを検索するために 各項目を調べるだけです | That's essentially the same as a normal list where we just start from the beginning without doing any kind of hash function and just go through each item 1 by 1 searching for Batman. |
| ハッシュ関数はバケットゼロを示します そこでAndy is 最後にBatmanを比較する必要があります つまり3つの文字列の比較です | It could be the case that if we search for Batman our hash function takes us to bucket 0 and then we have to compare between Andy, is, and finally Batman. |