首页 > 其他 > 详细

在堆栈中,push为入栈操作,pop为出栈操作

时间:2018-08-04 22:46:33      阅读:197      评论:0      收藏:0      [点我收藏+]

LinkedList提供以下方法:(ArrayList无此类方法)

addFirst();   

removeFirst();

 addLast();

 removeLast();

在堆栈中,push为入栈操作,pop为出栈操作。

 

Push用addFirst();pop用removeFirst(),实现后进先出。

用isEmpty()--其父类的方法,来判断栈是否为空。

 

在队列中,put为入队列操作,get为出队列操作。

Put用addFirst(),get用removeLast()实现队列。

 

 

 1 package TomTexts;
 2 
 3 public class TomTexts_11 {
 4     public static void main(String[] args)
 5     {
 6     String s1="Javav";
 7     char c=s1.charAt(2);
 8     System.out.println("c="+c);
 9     int i=s1.indexOf(‘a‘);
10     System.out.println("fistchar="+i);
11     int j=s1.lastIndexOf(‘a‘);
12     System.out.println("lastchar="+j);
13     i= s1.indexOf("av");
14     System.out.println("fiststring="+i);
15     j=s1.lastIndexOf("av");
16     System.out.println("laststring="+j); 
17     }
18 }

 

在堆栈中,push为入栈操作,pop为出栈操作

原文:https://www.cnblogs.com/borter/p/9420345.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!