码迷,mamicode.com
首页 >  
搜索关键字:amp    ( 86777个结果
Oracle数据库LOGGING&NOLOGGING模式概述
1.日志记录模式(LOGGING、FORCE LOGGING、NOLOGGING)1.1三者的含义LOGGING:当创建一个数据库对象时将记录日志信息到联机重做日志文件。LOGGING实际上是对象的一个属性,用来表示在创建对象时是否记录REDO日志,包括在做DML时是否记录REDO日志。一般表上不建...
分类:数据库   时间:2014-05-01 10:08:53    阅读次数:662
自定义View
自定义View继承自View@OverrideonDraw方法引用方式1、layout.addView()2、LinearLayout.addView---------------添加组件LinearLayout包含的所有子元素都受LinearLayout.LayoutParams控制,因此Line...
分类:其他好文   时间:2014-05-01 09:48:12    阅读次数:368
斯特林公式(计算大数阶乘)
#include #include #include #define PI 3.1415926535898#define e 2.718281828459using namespace std;///斯特林///n!=sqrt(2*PI*n)*pow(n/e,n)int main(){ int...
分类:其他好文   时间:2014-05-01 09:35:45    阅读次数:526
POJ 2443 - Set Operation
注意变换思维,然后就是水题。(如果卡时还可以进一步二分优化。)#include long existed[10000][32];int main(void){ int N;// freopen("poj2443.txt", "r", stdin); scanf("%d", &N);...
分类:其他好文   时间:2014-05-01 09:15:47    阅读次数:373
Leetcode | Valid Sudoku & Sudoku Solver
判断valid,没有更好的方法,只能brute force。 1 class Solution { 2 public: 3 bool isValidSudoku(vector > &board) { 4 5 int n; 6 for (int...
分类:其他好文   时间:2014-05-01 08:54:28    阅读次数:332
深入指针(一)
本次主题:指针与数组在进入主题前,我们先看一个例子:#includeint main(){ int a[5] = { 1, 2, 3, 4, 5 }; int *ptr = (int *) (&a + 1); printf("%d,%d\n", *(a + 1), *(ptr - ...
分类:其他好文   时间:2014-05-01 08:40:11    阅读次数:324
转 ABAP中USING与CHANGING的用法
ABAP中FORM参数的传递有以下几种方式。 1.引用传递(CALL BY REFERENCE) 传递参数时将参数的地址(ADDRESS)传至子程序中,也就是子程序中的参数变量与外部程序的参数变量共享地址内的值。又叫CALL BY ADDRESS,若子程序中的参数变量的值发生了改变,那么,外...
分类:其他好文   时间:2014-05-01 08:39:35    阅读次数:339
hdu 1370 中国剩余定理
题意 :求一个最小的数对 23 38 33 于i p ezsd: 因为23 38 33 两两互素所以可以用中国剩余定理是中共剩余定理的经典模板#include using namespace std; int exgcd(int a,int b,int &x,int &y) { i...
分类:其他好文   时间:2014-05-01 03:26:08    阅读次数:286
堆排序
package algorithm.sort;public class HeapSort { public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4, 9, 8, 6, 1}; sort(a); p...
分类:其他好文   时间:2014-05-01 03:24:04    阅读次数:332
wustoj 1318 区间的连通性 (最短路)
floyd求最短路。 注意图是有向图。。。 #include #include #include using namespace std; struct node { int x,y,id; }edge[205]; int dis[205][205]; int main() { int c,T,n,a,b,op; while(scanf("%d",&T...
分类:其他好文   时间:2014-04-29 13:21:23    阅读次数:313
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!