01 2014 档案
摘要:windows7下系统保护功能很是鸡肋,有事会出现一下两个问题:1.出现错误“文件名、目录名或卷标语法不正确。(0x8007007B)2.保护设置列表中出现“Windows7_os(c:)(找不到)”选项出现以上两种情况的原因是用户使用了系统恢复的功能(多出现在thinkpad系列的机器上),将C盘恢复成系统默认的状态时出现的故障。解决方法如下:重新命名C盘卷标,随便取名,确保是英文,保证跟默认的卷标不一样,然后就可以了。
阅读全文
摘要:1 #include 2 #include 3 4 struct b_node { 5 6 struct b_node *left_child; 7 8 struct b_node *right_child; 9 10 struct b_node *parent;11 12 int value;13 };14 15 void build_node(struct b_node*,FILE *fp);16 17 int main()18 {19 20 int flen = 0;/* the length of file */2...
阅读全文