LIFO
日本語 | 後入れ先出し |
英語 | Last In First Out |
ふりがな | りふぉ |
フリガナ | リフォ |
複数のデータを格納するとき、最後に格納したデータから取り出す方式のこと。
データ構造のひとつ。「スタック」「FILO」「先入れ後出し」とも言う。
データを取り出すとき、「後」に入れたデータの方が「先」に取り出されるため、「Last In First Out(後入れ先出し)」と呼ばれる。
一般には「スタック」と呼ばれることの方が多い。
データ構造のひとつ。「スタック」「FILO」「先入れ後出し」とも言う。
データを取り出すとき、「後」に入れたデータの方が「先」に取り出されるため、「Last In First Out(後入れ先出し)」と呼ばれる。
一般には「スタック」と呼ばれることの方が多い。
参考サイト
// Sample.java
import java.util.Stack;
public class Sample
{
public static void main( String[] args )
{
Stack stack = new Stack();
// 2つデータを突っ込みます。
stack.push( new Integer( 100 ) );
stack.push( new Integer( 200 ) );
// 「後」に入れた300。
stack.push( new Integer( 300 ) );
// この300が「先」に出てきます。
System.out.println( stack.pop() );
// 300
}
}
import java.util.Stack;
public class Sample
{
public static void main( String[] args )
{
Stack stack = new Stack();
// 2つデータを突っ込みます。
stack.push( new Integer( 100 ) );
stack.push( new Integer( 200 ) );
// 「後」に入れた300。
stack.push( new Integer( 300 ) );
// この300が「先」に出てきます。
System.out.println( stack.pop() );
// 300
}
}
// Sample.java import java.util.Stack; public class Sample { public static void main( String[] args ) { Stack stack = new Stack(); // 2つデータを突っ込みます。 stack.push( new Integer( 100 ) ); stack.push( new Integer( 200 ) ); // 「後」に入れた300。 stack.push( new Integer( 300 ) ); // この300が「先」に出てきます。 System.out.println( stack.pop() ); // 300 } }
「みだし」に含まれているページ
「サンプルプログラムとか」に含まれているページ
- (参照している単語はありません)