memrootじしょ
英和翻訳
associative array
Command and control
solution-oriented
clustering
string matching
database backup
Lavash
implementer
API Management
master problems
associative array
/əˌsoʊʃiətɪv əˈreɪ/
アソシエイティブ アレイ
1.
キーと値のペアを格納し、キーによって値にアクセスするデータ構造。
連想配列は、インデックス番号ではなく、一意のキー(文字列や数字など)を使って値にアクセスするデータ構造です。各キーはただ一つの値に対応し、データの検索、追加、削除を効率的に行えます。多くのプログラミング言語で「マップ」「辞書」「ハッシュテーブル」などと呼ばれています。
In
PHP,
an
associative
array
can
be
used
to
store
country
codes
and
names.
(PHPでは、連想配列を使って国コードと国名を格納できます。)
In PHP
PHPというプログラミング言語において
an associative array
キーと値のペアでデータを保持するデータ構造(連想配列)
can be used
利用することができます
to store
格納するために
country codes and names
国のコード(略称など)と国の名前
Python's
dictionaries
are
essentially
a
form
of
associative
array.
(Pythonの辞書は本質的に連想配列の一種です。)
Python's dictionaries
Pythonプログラミング言語における「辞書」というデータ構造
are essentially
本質的に~である
a form of
~の一種
associative array
キーと値のペアでデータを保持するデータ構造(連想配列)
Accessing
an
element
in
an
associative
array
is
done
using
its
key.
(連想配列の要素へのアクセスは、そのキーを使って行われます。)
Accessing an element
要素(データ)にアクセスすること
in an associative array
連想配列の中で
is done using
~を使って行われる
its key
その(連想配列の)キー
Many
programming
languages
implement
associative
arrays
under
different
names.
(多くのプログラミング言語は、異なる名前で連想配列を実装しています。)
Many programming languages
多くのプログラミング言語が
implement
実装している
associative arrays
連想配列を
under different names
異なる名前で
関連
map
dictionary
hash table
key-value pair
data structure
hashmap