寻找最大数(三)
时间限制:1000 ms | 内存限制:65535 KB
难度:2
描述
给出一个整数N,每次可以移动2个相邻数位上的数字,最多移动K次,得到一个新的整数。
求这个新的整数的最大值是多少。
输入多组测试数据。
每组测试数据占一行,每行有两个数N和K (1?≤?N≤?10^18; 0?≤?K?≤?100).
输出每组测试数据的...
分类:
其他好文 时间:
2015-04-12 12:07:17
阅读次数:
122
我的基本需求:在macos上本地写的代码,期望备份到云端服务器上。本地代码有一定的目录结构
1. 注册github账号
到www.github.com上注册账号(用户名+email地址),并创建目录
2. 将本地机器与github账相关联
将本地机器与github账号关联之后,本地机器就可以同服务器同步代码了。github使用ssh协议。
具体来说:
到 https:/...
分类:
系统相关 时间:
2015-04-12 12:06:45
阅读次数:
182
Packet在网络传输中必须要考虑万一数据损坏的情况,CRC32与Adler32都是最常用的算法。
Go与Android都内置好了这两种算法的实现,直接使用就好。
Go的调用方式如下:...
分类:
移动开发 时间:
2015-04-12 12:06:13
阅读次数:
148
与本文相关的关键词:Spring @Scheduled 执行两次的问题
使用组件:Spring framework web mvc
现象如下:使用@Scheduled标注的方法会执行两次
通过google输入关键词:spring @scheduled called twice,会显示许多人遇到相似问题。
该问题的根本原因就是包含有@Scheduled方法的类被初始化两次。
在...
分类:
编程语言 时间:
2015-04-12 12:06:30
阅读次数:
253
程序查询方式和程序中断方式适用于数据传输率比较低的外围设备,而DMA方式、通道方式和外围处理机方式则适用于数据传输率比较高的外围设备。...
分类:
其他好文 时间:
2015-04-12 12:03:20
阅读次数:
192
简单来说,在 javascript 中每个对象都会有一个 __proto__ 属性,当我们访问一个对象的属性时,如果这个对象内部不存在这个属性,那么他就会去 __proto__ 里找这个属性,这个 __proto__ 又会有自己的 __proto__,于是就这样一直找下去,也就是我们平时所说的原型链的概念。...
分类:
编程语言 时间:
2015-04-12 12:05:52
阅读次数:
161
//合并排序
#include
#include
using namespace std;
void sort(int c[],int a[],int b[],int n)
{
int i=0;
int j=0;//a
int k=0;//b
while(k!=5 && j!=5)
{
if(a[j]>b[k])
{
c[i++]=b[k++];
}
...
分类:
编程语言 时间:
2015-04-12 12:04:02
阅读次数:
145
1.普通用户登录然后进入root
sudo -s
(输入普通用户密码)
2,开启SSH服务,如果没有开启需要安装openssh-server:
sudo apt-get install openssh-server
(安装中选择“y”)
3,查看是否启动
ps -e | grep ssh
如果只有ssh-agent (一行)表...
分类:
系统相关 时间:
2015-04-12 12:05:20
阅读次数:
133
1.catch子句参数为对象
先看一段代码:
#include
#include
using namespace std;
class MyException :public exception{
public:
MyException(){
cout<<"MyException()"<<endl;
}
~MyException(){
cout<<"~MyException(...
分类:
编程语言 时间:
2015-04-12 12:02:30
阅读次数:
144
public static float getProcessCpuRate()
{
float totalCpuTime1 = getTotalCpuTime();
float processCpuTime1 = getAppCpuTime();
try
{
Thread.sleep(360);
...
分类:
移动开发 时间:
2015-04-12 12:05:27
阅读次数:
119
题目描述:Long time ago , Kitty lived in a small village. The air was fresh and the scenery was very beautiful. The only thing that troubled her is the typ...
分类:
其他好文 时间:
2015-04-12 12:02:05
阅读次数:
132
Title:Given an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:...
分类:
其他好文 时间:
2015-04-12 12:03:12
阅读次数:
85
1、 自增、自减 很简单,没什么可解释的,注意一下前缀和后缀运算的区别C++源码Debug版Release版#include using namespace std;int main(){ int a, b; cin >> a >> b; //自增 a = ++b + 10; cout using....
分类:
编程语言 时间:
2015-04-12 12:02:51
阅读次数:
197
1.通过intent启动service。 通过传递一个Intent对象至Context.startService()将启动一个服务(或给予正在运行的服务以一个新的指令)。Android调用服务的onStart()方法并将Intent对象传递给它。 Intent stpServiceIn = ...
分类:
其他好文 时间:
2015-04-12 12:01:12
阅读次数:
122
参考资料:http://www.geekfan.net/5558/http://blog.jobbole.com/23638/http://www.csdn.net/article/2014-03-05/2818640-internet-of-things-blog脚本主要是基于sysfs虚拟文件系...
分类:
系统相关 时间:
2015-04-12 12:03:51
阅读次数:
220
1.赋值对基本类型的赋值是直接将一个地方的内容复制到另一个地方。为对象进行赋值造作的时候,真正操作的是对象的引用,如果“将一个对象赋值给另一个对象”,实际上是将“引用”从一个地方复制到另一个地方:class Tank{ int level;}public class Test{ publ...
分类:
其他好文 时间:
2015-04-12 12:03:41
阅读次数:
152