码迷,mamicode.com
首页 > 2015年04月07日 > 全部分享
修改密码
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)
把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(矩阵快速幂+循环节)
HDU 4291 A Short problem(矩阵快速幂+循环节)...
分类:其他好文   时间:2015-04-07 17:44:09    阅读次数:93
Search in Rotated Sorted Array--LeetCode
题目: 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
hdu1728逃离迷宫 bfs
//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
简析Android中LruCache缓存类
/***************************************************  * TODO: description .  * @author: gao_chun  * @since:  2015-4-7  * @version: 1.0.0  * @remark: 转载请注明出处  ************************...
分类:移动开发   时间:2015-04-07 17:45:02    阅读次数:188
【BZOJ3931】【CQOI2015】网络吞吐量 最短路+网络流
题解: ……两遍最短路然后判断哪些边可以在某条最短路上,然后加到网络流图中。 然后题意是一个点经过流量有限制,拆点就好。 然后有重边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
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
Search in Rotated Sorted Array II-LeetCode
过正是因为这个条件的出现,出现了比较复杂的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
CSU1566: The Maze Makers(BFS)
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
Text Justification -- leetcode
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
Bundle&Intent&for&List&Map&Extra
关于不同的activity之间的传值个人感觉如果两个activity相关的话,使用intent和bundle还是挺多的,如果关联不是很密切的话一般都是用service传值,后文会将四大组建结合起来讲解下,现在先说说bundle,原来博主一般都是直接itntent.putextra();键值对少的时候控制的比较精细,而且感觉也不是很麻烦,但是一旦键值对很多的时候,那就比较可怕了,一个是程序的性能问题...
分类:其他好文   时间:2015-04-07 17:40:29    阅读次数:139
cpp反汇编之类和结构体分析
废话不多说。。 #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
Linux 开发环境搭建与使用——Linux 编译器之 GCC
上一节我们学习了 vim 编辑器,接下来我们一起学习 gcc 编译器,这里,我们要区分编辑器和编译器有何不同? 编辑器是指我用它来写程序的(编辑代码),而我们写的代码语句,电脑是不懂的,我们需要把它转成电脑能懂的语句,编译器就是这样的转化工具。就是说,我们用编辑器编写程序,由编译器编译后才可以运行! 编译器是将易于编写、阅读和维护的高级计算机语言翻译为计算机能解读、运行的低级机...
分类:系统相关   时间:2015-04-07 17:42:58    阅读次数:164
步步为营_Android开发课[15]_用户界面之TextView(文本视图)
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
使用otl监控oracle和DB2代码封装
#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
2256条   上一页 1 ... 47 48 49 50 51 52 53 ... 133 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!