摘要: 问题描述 给定n个十六进制正整数,输出它们对应的八进制数。输入格式 输入的第一行为一个正整数n (1<=n<=10)。 接下来n行,每行一个由0~9、大写字母A~F组成的字符串,表示要转换的十六进制正整数,每个十六进制数长度不超过100000。输出格式 输出n行,每行为输入对应的八进制正整数。 【注 阅读全文
posted @ 2018-10-19 14:30 菜の可怜 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 写了一个小时,我都晕死了,最后少考虑了个0次幂的情况,这时候就需要初始化的时候把对角线初始化为1就行 问题描述 给定一个N阶矩阵A,输出A的M次幂(M是非负整数) 例如: A = 1 2 3 4 A的2次幂 7 10 15 22 输入格式 第一行是一个正整数N、M(1<=N<=30, 0<=M<=5 阅读全文
posted @ 2018-10-19 14:28 菜の可怜 阅读(467) 评论(0) 推荐(0) 编辑
摘要: import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; //第一种加锁方式 lock 和 unlock class myThread implements Runnable{ //售票总数 private int tickets = 100; //定... 阅读全文
posted @ 2018-10-18 16:22 菜の可怜 阅读(233) 评论(0) 推荐(0) 编辑
摘要: Linux chmod命令 Linux/Unix 的文件调用权限分为三级 : 文件拥有者、群组、其他。利用 chmod 可以藉以控制文件如何被他人所调用。 使用权限 : 所有使用者 语法 参数说明 mode : 权限设定字串,格式如下 : 其中: u 表示该文件的拥有者,g 表示与该文件的拥有者属于 阅读全文
posted @ 2018-10-17 09:45 菜の可怜 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 文件和目录: # cd /home 进入 '/home' 目录 # cd .. 返回上一级目录 # cd ../.. 返回上两级目录 # cd - 返回上次所在目录 # cp file1 file2 将file1复制为file2 # cp -a dir1 dir2 复制一个目录 # cp -a /t 阅读全文
posted @ 2018-10-17 09:32 菜の可怜 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 因为用 Scanner 超时了 阅读全文
posted @ 2018-10-15 13:53 菜の可怜 阅读(342) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std; int main() { string str1; string str2; int jw=0; int arr[10005]; int l=0; int i; int num; cin>>str1; cin>>... 阅读全文
posted @ 2018-10-13 23:36 菜の可怜 阅读(118) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main() { int n,i,j; int jw; int gw=1; int a=0; int jc[10005]; jc[0] = 1; scanf("%d",&n); for(i=2;i=10){ jw += jc[j]/1... 阅读全文
posted @ 2018-10-13 22:52 菜の可怜 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 基础练习 Huffuman树 时间限制:1.0s 内存限制:512.0MB 时间限制:1.0s 内存限制:512.0MB 问题描述 Huffman树在编码中有着广泛的应用。在这里,我们只关心Huffman树的构造过程。 给出一列数{pi}={p0, p1, …, pn-1},用这列数构造Huffma 阅读全文
posted @ 2018-10-12 20:52 菜の可怜 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 获取网页地址,下载到本地文件夹 阅读全文
posted @ 2018-10-10 17:18 菜の可怜 阅读(206) 评论(0) 推荐(0) 编辑