求a^b的最后一位,a有1000位,b是long long。#include#includelong long y;char x[1005];int n,i,s;int a[10];int l;int find(int s,long long r){ memset(a,0,sizeof(a))...
分类:
其他好文 时间:
2015-03-10 21:26:48
阅读次数:
161
1、简单排序void Bubble_Sort( ElemenType A[], int N){ for ( P = N-1; P >= 0 ; P--) { flag = 0; for (i = 0; i A[i+1]) { Swap(A[i],A[i+1]); flag = ...
分类:
编程语言 时间:
2015-03-10 21:25:41
阅读次数:
159
题意:一条有向树,选择一个节点为根的话需要把朝向它的所有边都反转 ,问你最少需要反转几条边,选择那几个为根。解题思路:树形DP,先统计从下而上,然后再自上而下。解题代码: 1 // File Name: 219d.cpp 2 // Author: darkdream 3 // Created Tim...
1 #include 2 #include 3 #include 4 #include 5 #define CL(x, y) memset(x, y, sizeof(x)) 6 using namespace std; 7 const int MAX = 5; 8 int N, i, j,...
分类:
其他好文 时间:
2015-03-10 21:26:09
阅读次数:
150
1) 修改提示字符串: PS1('>>') >>PS1('input:')input:1 + 22) 运算 >> 1+2ans = 3>> 1*2ans = 2>> 1 == 2ans = 0>> 1 != 2ans = 1>> 1 && 0ans = 0>> 1 || 0ans = 13) 输.....
分类:
其他好文 时间:
2015-03-10 21:26:16
阅读次数:
312
CatTime Limit: 1500MSMemory Limit: 30000KTotal Submissions: 1580Accepted: 401Special JudgeDescriptionIn strong winds, sailboats tend to heel leeward (...
分类:
其他好文 时间:
2015-03-10 21:24:05
阅读次数:
112
//// main.m// 2-8 LessonClassExtension//// Created by lanouhn on 15/3/10.// Copyright (c) 2015年 lanouhn. All rights reserved.//#import #import "Pen.h"...
分类:
其他好文 时间:
2015-03-10 21:24:26
阅读次数:
215
题意:传送门题目描述As you know, shadow95 is pretty good at maths, especially combinatorial mathematics. Now, he has made a problem for you. We call a subset wh...
分类:
其他好文 时间:
2015-03-10 21:24:27
阅读次数:
132
1.准备操作系统1.1 系统登录界面1.2 操作系统版本信息jdbh:~ # uname -raLinux jdbh 2.6.27.54-Rocky4.2-x86_64 #1 SMP Fri Dec 24 11:29:12 CST 2010 x86_64 GNU/Linuxjdbh:~ # cat ...
分类:
数据库 时间:
2015-03-10 21:26:02
阅读次数:
186
在Windows7下使用Eclipse的童鞋都知道,中文字体显示特别小,不习惯、别扭。将其字体改回Windows XP下Eclipse默认的字体就好了。Windows -> Perferences -> General -> Appearance -> Colors and Fonts -> Bas...
开发一个大一点的项目有很多的hbm.xml文件,有时候上百个也不稀奇,如果用 com/tz/entity/Student.hbm.xml 那么每一个hbm.xml文件都要配置一行代码,一百个hbm....
分类:
编程语言 时间:
2015-03-10 21:23:23
阅读次数:
133
能启用GPU加速的几个CSS属性 translate3d translateZ rotate scale 解决可能的闪烁: -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visi...
分类:
其他好文 时间:
2015-03-10 21:24:58
阅读次数:
179
1、 deb 是 ubuntu 、debian 的格式。 rpm 是 redhat 、fedora 、suse 的格式。 他们不通用(虽然可以转换一下)。 deb是debian发行版的软件包 ubuntu是基于debian 发行的 所有可以用 .deb是solari...
分类:
系统相关 时间:
2015-03-10 21:22:51
阅读次数:
287
20150310 块设备驱动程序 2015-03-10 李海沿 接下来我们来实现块设备驱动程序。 一、块设备结构体 1. file_operations 结构体 和字符设备驱动中file_operations 结构体类似,块设备驱动中也有一个 block_device_operations 结构体,...
分类:
其他好文 时间:
2015-03-10 21:23:40
阅读次数:
157
//// main.m// 2-7 LessonBlock//// Created by lanouhn on 15/3/9.// Copyright (c) 2015年 lanouhn. All rights reserved.//#import #import "Student.h"#impor...
分类:
其他好文 时间:
2015-03-10 21:24:15
阅读次数:
163
项目中使用了SASS,一直觉得颜色的命名很乱,觉得有必要有一个工具告诉你对应的颜色应该叫什么名字。于是我写了一个小工具ColorNamer。
分类:
其他好文 时间:
2015-03-10 21:23:15
阅读次数:
218