1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

HashMapの使い方

Last updated at Posted at 2025-06-30

HashMapの使い方について紹介します。

image.png

よく使うメソッド

image.png
すでにマップに入れている値に計算をしたい時は、get(key)で取り出してput(key,value)で更新します。

リストの文字ごとの出現回数を数えるときなどに、文字ごとに走査するよりもHashMapを作ってそこから取り出す方が計算量が少なく済みます。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?