摘要:
做这题先看:http://blog.csdn.net/u010372095/article/details/9904497Problem Description 在魔方风靡全球之后不久,Rubik先生发明了它的简化版——魔板。魔板由8个同样大小的方块组成,每个方块颜色均不相同,可用数字1-8分别表示。任一时刻魔板的状态可用方块的颜色序列表示:从魔板的左上角开始,按顺时针方向依次写下各方块的颜色代号,所得到的数字序列即可表示此时魔板的状态。例如,序列(1,2,3,4,5,6,7,8)表示魔板状态为: 1 2 3 4 8 7 6 5 对于魔板,可施加三种不同的操作,具体操作方法如下: A: ... 阅读全文
摘要:
在开发中经常会用到一些rpm包,但是一直没有自己手动制作过。今天在制作的时候意外地还解决了自己以前一直困惑的问题,就是怎么制作rpm debuginfo包,类似CentOS官网那样的debuginfo包。原来在制作rpm时如果没有特殊设置就会在RPMS目录下同时生成rpm包及对应的debuginfo包。 下面总结一下制作rpm包的流程以及遇到的一些问题的解决。 1、配置工作路径 在制作rpm包之前,首先要配置工作路径,也就是制作rpm包所在的目录,当前的工作路径可以通过rpmbuild命令查看,如下所示: 工作路径是由_topdir变量指定的,默认情况下是当前用户... 阅读全文
摘要:
------------------------------------------------------------------------------------------------------ 转载或引用请务必注明原文地址: http://blog.csdn.net/luzhenrong45/article/details/9882189 或联系作者:luzhenrong45@gmail.com 谢谢! ----------------------------------------------------------------... 阅读全文
摘要:
1.定义结构体数组和定义结构体变量类似,定义结构体数组时只需声明其为数组即可。如:struct Student{ int num; char name[20]; char sex[5]; int age; float score; char addr[30];};Student stu[3]; //定义Student类型的数组stu 2.结构体数组的应用举例题目:对候选人的票的统计程序。设有3个候选人,最终只能有一个当选为领导。今有10个人参加投票,从键盘先后输入这10个人所投的候选人的名字,要求最后能输出这3个候选人的的票结果。#include... 阅读全文
摘要:
1安装Xdebug用yum安装可能会失败,用pecl安装成功。#yum installphp-pecl-xdebug.x86_64pecl installxdebug 如果pecl命令不存在请先安装php-pear 命令:yum install php-pear注意多加了一项IDE Key,且要与后面PHPStorm中的配置相同:zend_extension=/path/xdebug.sozend_debugger.allow_hosts=10.25.1.199zend_debugger.expose_remotely=alwayszend_debugger.httpd_uid=-1xde.. 阅读全文
摘要:
How Many Fibs?Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 3098Accepted Submission(s): 1232 Problem Description Recall the definition of the Fibonacci numbers: f1 := 1 f2 := 2 fn := fn-1 + fn-2 (n >= 3) Given two numbers a a... 阅读全文
摘要:
Overpower often go to the playground with classmates. They play and chat on the playground. One day, there are a lot of stars in the sky. Suddenly, one of Overpower’s classmates ask him: “How many acute triangles whose inner angles are less than 90 degrees (regarding stars as points) can be found? A 阅读全文