- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
所以在过去的几天里,我一直在设计一个图灵机,并发现在我的实现中,我的二进制计数运行在大约 4n,其中 n 是我计数到的数字。所以 O(4n) -> O(n)。我不太擅长证明复杂性,但据我从研究中了解到,如果你有一个图灵机 M,对于 {0,1}* 中的每个 n,t_{M}(n) 将是多长时间需要数到 n,对吗?然后,如果它不停止,那么它的最高界限就是无穷大。有没有办法在这两者之间架起一座桥梁,得出 n 个步骤确实是最坏情况的结论?我永远不确定从哪里开始证明,有什么想法吗?
更新:
下面是我用二进制计数的图灵机表示:
import java.util.Scanner;
public class TuringMachine {
/**
* Divide a number n by 2 shifting right (shift-right-logical)
* to figure out the minimum number of bits needed to represent
* the number in binary.
*/
private static int getNumBits(int n) {
int c = 0;
while (n > 0) {
c++;
n = n >> 1;
}
return c;
}
private static void computeBinaryValues(int n) {
System.out.println();
int i, c, state;
char symbol;
String t;
System.out.println("Computed binary values for:");
// Compute values of n = 1 to n
for (int j = 1; j <= n; j++) {
t = ""; // temp string
state = 0; // current state
symbol = ' '; // current symbol being read
c = getNumBits(j) + 1; // minimum number of bits needed + 1 for a buffer
i = c - 1; // indexing starting from end of the string
// initialize temp string to contain all ' ' characters
for (int k = 0; k < c; k++) {
t += " ";
}
// String builder off "empty" t string
StringBuilder s = new StringBuilder(t);
// The actual binary representation of n + end space buffer
String a = Integer.toBinaryString(j) + " ";
// Turing Cycle
while (!(s.toString()).equals(a)) { // if the binary build is successful, these match.
if (state == 0) {
if (symbol == ' ') {
state = 1;
i--; // left
} else { // symbols 0 and 1 rewrite themselves && move right 1
i++; // right
}
} else if (state == 1) {
if (symbol == ' ') {
s.setCharAt(i, '1');
state = 0;
i++; // right
} else if (symbol == '0') {
s.setCharAt(i, '1');
state = 0;
i++; // right
} else {
s.setCharAt(i, '0');
i--; // left
}
}
symbol = s.charAt(i); // get symbol to read from
}
System.out.println(j + " -> " + s); // print binary string created from machine
}
}
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter value for n >= 1: ");;
computeBinaryValues(in.nextInt());
}
}
因此,使用 Ishtar 的归纳建议:
C(0) = a
C(1) = b
C(2) = c
设 k 为常数 - 根据我的代码实验假设为 4。
c = k + b
b = k + a
他说我们必须证明 c(i+1) = c(i) + k
然后我给出了我对它的含义的解释? (我不明白他的入职案例)
最佳答案
如果我正确理解了您的问题,那么您是在尝试确定您的图灵机是否停止,如果没有停止,那么最坏的时间复杂度是无限的,对吗?如果这是你的问题,那么你不能在两者之间架起一座桥梁,为什么?因为停机问题(确定程序是否停机的问题)在图灵机上是不可判定的,这意味着用于确定 TM 是否停机的算法不存在(并且永远不会存在)。
关于algorithm - 在 O(n) 中证明图灵机计数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28248477/
(这不是关于定理证明,而是关于实践中的测试,例如 quickCheck) 让f一些通用函数 f :: RESTRICTIONS => GENERICS 具有一些“理想的”属性(即不是 hack,是不可
给定数组 arr 和索引数组 ind,以下算法就地重新排列 arr 以满足给定的索引: function swap(arr, i, k) { var temp = arr[i]; arr[i]
我有兴趣创建一个具有运行时间和空间限制的简单数组问题。看来我找到了解决问题的方法。请阅读以下java代码中问题的初始描述注释: /* * Problem: Given two integer ar
我是 isabelle 的新手,并试图证明以下简单的不等式: lemma ineq: "(a::real) > 0 ⟹ a 0 ⟹ b 0" proof have "1/a + 1/b >
是否有任何理论说缓存应该比文件系统更快? 我认为,由于文件系统也使用缓存,因此没有科学证据表明当文件系统的概念有些松散时,我们应该将内容从文件系统移动到诸如 memcache 之类的缓存中——比如下载
我正在做一个证明,我的一个子目标看起来有点像这样: Goal forall (a b : bool) (p: Prop) (H1: p -> a = b) (H2: p), neg
我有定义的归纳类型: Inductive InL (A:Type) (y:A) : list A -> Prop := | InHead : forall xs:list A, InL y (co
我知道 CRC 是一个线性函数,这意味着 CRC(x xor y) = CRC(x) xor CRC(y),但我不知道如何证明 CRC 的这个属性。 有谁有想法吗? 非常感谢! 最佳答案 这通常不是真
我是 Coq 的初学者。 虽然计算机为我验证了证明令人满意,但众所周知,满足 Coq 的证明对人类来说难以阅读。这是一个简单的例子,假设您没有看到任何评论: Theorem add_comm : fo
我试图了解是什么决定了类型参数是否必须是标称的。 虽然 GADT 和类型家族在某种意义上看起来不同,但它们不是“简单容器”,因为它们的实例定义可以“查看”它们的参数,但简单类型是否可以明显需要名义参数
我想使用 function 关键字定义来证明函数定义的正确性。以下是自然数的通常归纳定义上的加法函数的定义: theory FunctionDefinition imports Main begin
我定义了一个 Sygma-Type,如下所示: { R : nat -> nat -> bool | Reflexive R } 我有两个元素 r1 r2 : { R : nat -> nat ->
我有以下数据: new_pairs x y Freq start.latittude start.longitude start.station end.la
出于教育目的,我一直试图通过使用各种语言扩展和单例类型,在 Haskell 中重建《Type-Driven Development with Idris》(即 RemoveElem.idr )一书中的
我定义了一个 Sygma-Type,如下所示: { R : nat -> nat -> bool | Reflexive R } 我有两个元素 r1 r2 : { R : nat -> nat ->
我正在使用Ax DevTools,并且试图弄清楚如何使用相同的构建信息标记多个扫描。现在,我的测试运行如下: class MyTestCase : XCTestCase { func myTest
我正在尝试证明一个函数的正确性,该函数检查数组是否按递增/递减顺序排序或未排序。行为是返回 -1,如果按降序排序,1,如果按升序排序,大小为 1,或包含相同的值,0,如果没有已排序或为空。运行:Fra
我试图证明 Z3(Microsoft 的 SMT 求解器)中的一个归纳事实。我知道 Z3 通常不提供此功能,如 Z3 guide 中所述。 (第 8 节:数据类型),但是当我们限制要证明事实的域时,这
问题已编辑: 如代码中所述,HashSet 和 HashMap 是快速失败的(但这不是保证): void goHashSet() { Set set = new HashSet();
我试图使导航栏中的链接延伸到导航栏的全长。我环顾四周,发现了一些有用的信息,但无法使其正常工作 HTML: To
我是一名优秀的程序员,十分优秀!