翻訳と辞書
Words near each other
・ Appellhofplatz (KVB)
・ Appellplatz
・ Appell–Humbert theorem
・ Appelmans
・ Appeln
・ Appelpop
・ Appelscha
・ Appelt
・ Appeltern
・ Appen
・ Appen, Netherlands
・ Appena prima di partire
・ Appena prima di partire (song)
・ Appenai-sous-Bellême
・ Appenans
Append
・ Appendage
・ Appendage (EP)
・ Appendectomy
・ Appendichordella
・ Appendicitis
・ Appendicolith
・ Appendicospora
・ Appendicula
・ Appendicula calcarata
・ Appendicular
・ Appendicular artery
・ Appendicular skeleton
・ Appendicular vein
・ Appendicularia (plant)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Append : ウィキペディア英語版
Append
In general, to append is to join or add on to the end of something. For example, an appendix is a section appended (added to the end) of a document.
In computer programming, append is the name of a procedure for concatenating (linked) lists or arrays in some high-level programming languages.
==Lisp==
Append originates in the Lisp programming language. The append procedure takes zero or more (linked) lists as arguments, and returns the concatenation of these lists.

(append '(1 2 3) '(a b) '() '(6))
;Output: (1 2 3 a b 6)

Since the append procedure must completely copy all of its arguments except the last, both its time and space complexity are O(''n'') for a list of n elements. It may thus be a source of inefficiency if used injudiciously in code.
The nconc procedure (called append! in Scheme) performs the same function as append, but destructively: it alters the cdr of each argument (save the last), pointing it to the next list.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Append」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.