99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁精彩閱讀棧和隊(duì)列數(shù)據(jù)結(jié)構(gòu)的基本概念及其相關(guān)的Python實(shí)現(xiàn)
棧和隊(duì)列數(shù)據(jù)結(jié)構(gòu)的基本概念及其相關(guān)的Python實(shí)現(xiàn)
2018-04-01
收藏

棧和隊(duì)列數(shù)據(jù)結(jié)構(gòu)的基本概念及其相關(guān)的Python實(shí)現(xiàn)

先來回顧一下棧和隊(duì)列的基本概念:

相同點(diǎn):從"數(shù)據(jù)結(jié)構(gòu)"的角度看,它們都是線性結(jié)構(gòu),即數(shù)據(jù)元素之間的關(guān)系相同。

不同點(diǎn):棧(Stack)是限定只能在表的一端進(jìn)行插入和刪除操作的線性表。 隊(duì)列(Queue)是限定只能在表的一端進(jìn)行插入和在另一端進(jìn)行刪除操作的線性表。它們是完全不同的數(shù)據(jù)類型。除了它們各自的基本操作集不同外,主要區(qū)別是對(duì)插入和刪除操作的"限定"。

棧必須按"后進(jìn)先出"的規(guī)則進(jìn)行操作:比如說,小學(xué)老師批改學(xué)生的作業(yè),如果不打亂作業(yè)本的順序的話,那么老師批改的第一份作業(yè)一定是最后那名同學(xué)交的那份作業(yè),如果把所有作業(yè)本看作是一個(gè)棧中的元素,那么最后一個(gè)同學(xué)交的作業(yè)本就是棧頂元素,而第一個(gè)同學(xué)交的,也就是最低端的作業(yè)本,就是棧底元素,這就是對(duì)棧的讀取規(guī)則。

而隊(duì)列必須按"先進(jìn)先出"的規(guī)則進(jìn)行操作:打個(gè)比方,一些人去銀行辦理業(yè)務(wù),一定是先去排隊(duì)的最先得到服務(wù),當(dāng)然他也是第一個(gè)走出銀行的(假設(shè)這些人都在一個(gè)窗口排隊(duì))。如果把所有這些等候服務(wù)的人看作是隊(duì)的元素,第一個(gè)人就是對(duì)頭元素,相應(yīng)的,最后一個(gè)人就是隊(duì)尾元素。這是隊(duì)的讀取規(guī)則。
用Python實(shí)現(xiàn)棧,這是Python核心編程里的一個(gè)例子:

'#!/usr/bin/env python
 
#定義一個(gè)列表來模擬棧
stack = []
 
#進(jìn)棧,調(diào)用列表的append()函數(shù)加到列表的末尾,strip()沒有參數(shù)是去掉首尾的空格
def pushit():
  stack.append(raw_input('Enter new string: ').strip())
 
#出棧,用到了pop()函數(shù)
def popit():
  if len(stack) == 0:
    print 'Cannot pop from an empty stack!'
  else:
    print 'Removed [', stack.pop(), ']'
 
#編歷棧
def viewstack():
  print stack
 
#CMDs是字典的使用
CMDs = {'u': pushit, 'o': popit, 'v': viewstack}
 
#pr為提示字符
def showmenu():
  pr = """
  p(U)sh
  p(O)p
  (V)iew
  (Q)uit
    Enter choice: """
 
  while True:
    while True:
      try:
        #先用strip()去掉空格,再把第一個(gè)字符轉(zhuǎn)換成小寫的
        choice = raw_input(pr).strip()[0].lower()
      except (EOFError, KeyboardInterrupt, IndexError):
        choice = 'q'
 
      print '\nYou picked: [%s]' % choice
      if choice not in 'uovq':
        print 'Invalid option, try again'
      else:
        break
 
#CMDs[]根據(jù)輸入的choice從字典中對(duì)應(yīng)相應(yīng)的value,比如說輸入u,從字典中得到value為pushit,執(zhí)行pushit()進(jìn)棧操作
    if choice == 'q':
      break
    CMDs[choice]()
 
#判斷是否是從本文件進(jìn)入,而不是被調(diào)用
if __name__ == '__main__':
  showmenu()

用Python實(shí)現(xiàn)隊(duì)列:    
#!/usr/bin/env python
 
queue = []
 
def enQ():
  queue.append(raw_input('Enter new string: ').strip())
 
#調(diào)用list的列表的pop()函數(shù).pop(0)為列表的第一個(gè)元素
def deQ():
  if len(queue) == 0:
    print 'Cannot pop from an empty queue!'
  else:
    print 'Removed [', queue.pop(0) ,']'
 
def viewQ():
  print queue
 
CMDs = {'e': enQ, 'd': deQ, 'v': viewQ}
 
def showmenu():
  pr = """
  (E)nqueue
  (D)equeue
  (V)iew
  (Q)uit
    Enter choice: """
 
  while True:
    while True:
      try:
        choice = raw_input(pr).strip()[0].lower()
      except (EOFError, KeyboardInterrupt, IndexError):
        choice = 'q'
 
      print '\nYou picked: [%s]' % choice
      if choice not in 'devq':
        print 'Invalid option, try again'
      else:
        break
    if choice == 'q':
      break
    CMDs[choice]()
 
if __name__ == '__main__':
  showmenu()

數(shù)據(jù)分析咨詢請(qǐng)掃描二維碼

若不方便掃碼,搜微信號(hào):CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機(jī)數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進(jìn)行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個(gè)參數(shù)驗(yàn)證碼對(duì)象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個(gè)配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺(tái)檢測(cè)極驗(yàn)服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時(shí)表示是新驗(yàn)證碼的宕機(jī) product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說明請(qǐng)參見:http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計(jì)時(shí)完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請(qǐng)輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請(qǐng)輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }