mysql> set password for root@localhost=password('12'); ----将主机地址为localhost用户名为root的密码改为12
Query OK, 0 rows affected (0.02 sec)...
分类:
其他好文 时间:
2015-04-07 17:43:57
阅读次数:
109
把svn中的分支(branch)合并到主分支(trunk)
branch 和 trunk的代码同步至最新
选中trunk项目需要合并的代码(可以项目根目录、也可以是子目录或文件)
选择合并操作 ( team-->合并)
选择合并一个分支(reintegrate a branch)
填写需要合并的分支目录(reintegrate a branch)...
分类:
其他好文 时间:
2015-04-07 17:45:58
阅读次数:
107
输入一个整数矩阵,计算位于矩阵边缘的元素之和.所谓矩阵边缘的元素,就是第一行和最后一行的元素以及第一列和最后一列的元素。
源代码:
#include
#include
int main()
{
int m,n;//矩阵的长和宽
int sum = 0;
printf("输入矩阵的长和宽\n");
scanf("%d%d",&m,&n);
int a[m][n];//存储矩阵的值...
分类:
其他好文 时间:
2015-04-07 17:45:15
阅读次数:
373
HDU 4291 A Short problem(矩阵快速幂+循环节)...
分类:
其他好文 时间:
2015-04-07 17:44:09
阅读次数:
93
题目:
Suppose a sorted array is rotated at some pivot unknown to you beforehand.
(i.e., 0 1 2 4 5 6 7 might become 4
5 6 7 0 1 2).
You are given a target value to search. If found in the ar...
分类:
其他好文 时间:
2015-04-07 17:42:36
阅读次数:
161
//bfs用vis[i][x][y][k] 表示从i的方向到x,y且剩下的转弯数是k
#include
#include
#include
#include
using namespace std;
const int maxn = 110 ;
int vis[4][maxn][maxn][maxn] ;
char map[maxn][maxn] ;
struct node
{...
分类:
其他好文 时间:
2015-04-07 17:42:23
阅读次数:
122
/***************************************************
* TODO: description .
* @author: gao_chun
* @since: 2015-4-7
* @version: 1.0.0
* @remark: 转载请注明出处
************************...
分类:
移动开发 时间:
2015-04-07 17:45:02
阅读次数:
188
题解:
……两遍最短路然后判断哪些边可以在某条最短路上,然后加到网络流图中。
然后题意是一个点经过流量有限制,拆点就好。
然后有重边Qwq(调了好久。。。)
然后或许有自环,不过这并不影响什么。
代码:
调试过程中代码风格已经狗一样。
看到 long long i;i
#include
#include
#include
#include
#include
#defi...
分类:
其他好文 时间:
2015-04-07 17:44:11
阅读次数:
126
Local image caching solution for Android: Square Picasso vs Universal Image Loader
http://stackoverflow.com/questions/19995007/local-image-caching-solution-for-android-square-picasso-vs-universal-i...
分类:
移动开发 时间:
2015-04-07 17:42:27
阅读次数:
535
过正是因为这个条件的出现,出现了比较复杂的case,甚至影响到了算法的时间复杂度。原来我们是依靠中间和边缘元素的大小关系,来判断哪一半是不受rotate影响,仍然有序的。而现在因为重复的出现,如果我们遇到中间和边缘相等的情况,我们就丢失了哪边有序的信息,因为哪边都有可能是有序的结果。假设原数组是{1,2,3,3,3,3,3},那么旋转之后有可能是{3,3,3,3,3,1,2},或者{3,1,2,3...
分类:
其他好文 时间:
2015-04-07 17:43:29
阅读次数:
75
Description
The Maze Makers is a publisher of puzzle books. One of their most popular series is maze books. They have a program that generates rectangular two-dimensional mazes like the one shown...
分类:
其他好文 时间:
2015-04-07 17:43:08
阅读次数:
156
Given an array of words and a length L, format the text such that each line has exactly L characters and is fully (left and right) justified.
You should pack your words in a greedy approach; that i...
分类:
其他好文 时间:
2015-04-07 17:40:50
阅读次数:
137
关于不同的activity之间的传值个人感觉如果两个activity相关的话,使用intent和bundle还是挺多的,如果关联不是很密切的话一般都是用service传值,后文会将四大组建结合起来讲解下,现在先说说bundle,原来博主一般都是直接itntent.putextra();键值对少的时候控制的比较精细,而且感觉也不是很麻烦,但是一旦键值对很多的时候,那就比较可怕了,一个是程序的性能问题...
分类:
其他好文 时间:
2015-04-07 17:40:29
阅读次数:
139
废话不多说。。
#include
class CNumber
{
public:
CNumber()
{
m_nOne = 1;
m_nTwo = 2;
}
int __stdcall GetNumberOne()
{
return m_nOne;
}
int GetNumberTwo()
{
return m_nTwo;
}1: #include
2:...
分类:
其他好文 时间:
2015-04-07 17:41:01
阅读次数:
152
上一节我们学习了 vim 编辑器,接下来我们一起学习 gcc 编译器,这里,我们要区分编辑器和编译器有何不同?
编辑器是指我用它来写程序的(编辑代码),而我们写的代码语句,电脑是不懂的,我们需要把它转成电脑能懂的语句,编译器就是这样的转化工具。就是说,我们用编辑器编写程序,由编译器编译后才可以运行!
编译器是将易于编写、阅读和维护的高级计算机语言翻译为计算机能解读、运行的低级机...
分类:
系统相关 时间:
2015-04-07 17:42:58
阅读次数:
164
Focus on technology, enjoy life!—— QQ:804212028
浏览链接:http://blog.csdn.net/y18334702058/article/details/44624305
主题:用户界面之TextView(文本视图)
TextView控件实例:activity_main.xml源代码:<?xml version="1.0" encoding="...
分类:
移动开发 时间:
2015-04-07 17:42:15
阅读次数:
145
#ifndef _OTL_ORACLE_H_
#define _OTL_ORACLE_H_
#ifdef WIN32
#include
#endif
#include
#include
#include
#include
#define OTL_DB2_CLI //OTL_ORA9I
#include "../otlv4.h"
namespace thefox{
namespac...
分类:
数据库 时间:
2015-04-07 17:39:46
阅读次数:
254