0
Q
圖靈機設計0和1
A
回答
2
我假設你想要磁帶字母只包含0,1和 - (空白)。在使用單磁帶圖靈機時,我們的策略是卓有成效的:我們將在中間的0點周圍來回跳動,並在我們找到它們時將其交叉掉1。我們將繼續,直到我們用完1
s並達到空白。那時,磁帶上剩下的全部是1^| m-n |以及n + m + 1- | m-n |零。最後,我們將結果複製到磁帶的開頭(如果這不是已經存在的地方,即m> n)並清除零。
Q s s' D Q'
// read past 1^n
q0 1 1 R q0
// read through zeroes
q0 0 0 R q1
q1 0 0 R q1
// mark out the first 1 remaining in 1^m
q1 1 0 L q2
// read through zeros backwards
q2 0 0 L q2
// mark out the last 1 remaining in 1^n
q2 1 0 R q1
// we were reading through zeroes forward
// and didn't find another 1. n >= m and
// we have deleted the same number from
// the first and last parts so just delete
// zeroes
q1 - - L q3
q3 0 - L q3
q3 1 1 L halt_accept
// we were reading through zeroes backwards
// and didn't find another 1. n < m and we
// accidentally deleted one too many symbols
// from the 1^m part. write it back and start
// copying the 1s from after the 0s back to
// the beginning of the tape. then, clear zeroes.
q2 - - R q4
q4 0 1 R q5
q5 0 0 R q5
q5 1 0 L q6
q6 0 0 L q6
q6 1 1 R q4
q5 - - L q7
q7 0 - L q7
q7 1 1 L halt_accept
當然,沒有TM例子是沒有它的執行的例子是完整的。
-111110111- => -111110111- => -111110111-
^ ^ ^
q0 q0 q0
=> -111110111- => -111110111- => -111110111-
^ ^ ^
q0 q0 q0
=> -111110111- => -111110011- => -111110011-
^ ^ ^
q1 q2 q2
=> -111100011- => -111100011- => -111100011-
^ ^ ^
q1 q1 q1
=> -111100001- => -111100001- => -111100001-
^ ^ ^
q2 q2 q2
=> -111100001- => -111000001- => -111000001-
^ ^ ^
q1 q1 q1
=> -111000001- => -111000001- => -111000001-
^ ^ ^
q1 q1 q1
=> -111000000- => -111000000- => -111000000-
^ ^ ^
q2 q2 q2
=> -111000000- => -111000000- => -111000000-
^ ^ ^
q2 q2 q2
=> -110000000- => -110000000- => -110000000-
^ ^ ^
q1 q1 q1
=> -110000000- => -110000000- => -110000000-
^ ^ ^
q1 q1 q1
=> -110000000- => -110000000- => -11000000--
^ ^ ^
q1 q3 q3
=> -1100000--- => -110000---- => -11000-----
^ ^ ^
q1 q3 q3
=> -1100------ => -110------- => -11--------
^ ^ ^
q1 q3 q3
=> -11--------
^
halt_accept
相關問題
- 1. 設計圖靈機
- 2. 圖靈機設計
- 3. 圖靈機 - 更多0或1?
- 4. 計算理論圖靈機
- 5. 統計員的圖靈機圖
- 6. 圖靈機器和機器圖解
- 7. Is!0和!1比1和0好嗎?
- 8. 平方根計算圖靈機
- 9. 設計一個圖靈機的狀態表
- 10. 上圖靈機
- 11. 類圖設計問題:1到n和1到1
- 12. 隨機選擇0和1之間
- 13. 按Pig中的組計數1和0
- 14. 數據庫設計:引用多個1到0..1的關係
- 15. 圖靈機停機問題
- 16. 圖靈機配置
- 17. DPDA到圖靈機?
- 18. 隨機數:0或1
- 19. 預計1實際0
- 20. 圖靈機和想出一個想法
- 21. 隨機插入一個0和1與1的特定數
- 22. SSIS packageformat 1和0
- 23. 有限自動機,下推自動機和圖靈機示例
- 24. 如何在Java中輸出序列'1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 ...'?
- 25. 圖像精靈和觸摸設備
- 26. 圖靈機與模式
- 27. 圖靈機模擬器
- 28. 通用圖靈機示例
- 29. 素數的圖靈機
- 30. 圖靈機MOD功能