Time of Update: 2013-11-08
public interface Session { public static final String SESSION_CREATED_EVENT = "createSession"; public static final String SESSION_DESTROYED_EVENT = "destroySession"; public String getAuthType(); public
Time of Update: 2013-11-08
Total Submission(s): 857 Accepted Submission(s): 188For simplicity, you only need to consider two kinds of calculations in your program: addition and multiplication. It is guaranteed that all input numbers to the calculator
Time of Update: 2013-11-08
: and swap its two children, it produces a scrambled string . is a scrambled string of . and , it produces a scrambled string . is a scrambled string of .有一種方法叫做簡單粗暴。。。遞迴+剪枝bool isScramble(string s1,
Time of Update: 2013-11-08
相對人是否能到達箱子的四周bfsr,再對箱子bfsx。對人和箱子的座標進行標記,防止走重複的。#include <iostream>#include <queue>#include <cstring>using namespace std;struct tuixiang{int x,y,rx,ry,step;}e;int n,m,bz[10][10][10][10],map[10][10];int
Time of Update: 2013-11-08
Maven是一個常用的Java build Manager, 使用Maven可以很好的對Java Project的dependency進行管理. 這裡我記錄幾個比較常用的Plugin配置. 通過上面的4個簡單的配置, 我們可以實現對我們的項目進行打包, 同時拷貝設定檔, 和Dependency JAR檔案, 產生執行指令碼, 這個打包有幾個優勢:當然, Maven並不是我們可以用的唯一一個build management tool, 我們還可以使用Ant,
Time of Update: 2013-11-08
#include<stdio.h>#include<string.h>#define N 1001#include<algorithm>using namespace std;struct node{ int x,y,z;}dot[N];int sum[N];int cmp(node a,node b){ if(a.x>b.x)return 1; else if(a.x==b.x){
Time of Update: 2013-11-08
1. Properties 1.概述 2.常用方法 public class PropertiesDemo1 { public static void main(String[] args) { Properties pro = new Properties(); /*
Time of Update: 2013-11-08
前言生活總是要往前看,等待了一天也沒有阿里的面試通知,心情是相當灰暗,但是生活總要繼續,還是要向前看,做幾道PHP的面試題目,畢竟我的主要開發語言還是PHP題目1、一個包含中英文的字串如何獲得它的自然長度需要考慮漢字的字元編碼,注意UTF-8中一個漢字佔3個位元組<?php/** * 擷取中英文混排的字串的長度 */$str = "還沒等到阿里的面試通知123456";$nor_len = mb_strlen($str, "utf8");echo $
Time of Update: 2013-11-08
#include <iostream>#include <cstdio>#include <cstring>using namespace std;const int maxn=2e4+9;const double inf=1e10;int n;struct D{ long long a,b,c;}data[maxn];long long cal(long long tmp){ long long ans=0; for(int i=1
Time of Update: 2013-11-08
1、快速定位未完成的代碼 它的功能相當於書籤的作用,具有記憶代碼的功能,在做項目的時候非常有用。如果第一天有未完成的代碼,第二天再來上班的時候就可以直接做前一天未完成的任務。實現方法:
Time of Update: 2013-11-08
package com.home;public class Address {private final String detail;public Address() {this.detail = "";}public Address(String detail) {this.detail = detail;}public String getDetail() {return detail;}@Overridepublic int hashCode() {return
Time of Update: 2013-11-08
功能概述 Excel2HtmlTable的主要功能就是把Excel的內容以表格的方式,展現在頁面中。Excel的多個Sheet對應頁面的多個Tab選項卡。轉換演算法的痛點在於,如何處理行列合并,將Excel的行列合并模型轉換成Html表格的行列合并模型。 背景故事 因實際需要,需要將Excel展現在Web介面中。 最初,想在網上找開源的東東,結果沒有1個是想要的。有的特別複雜,有的只能在Windows平台,需要閉源的dll,最終還是得靠自己。 人不逼迫自己,真是想偷懶,不能出成果。
Time of Update: 2013-11-08
vs2010編譯成功 //stdAfx.h#ifndef VOL_UNIT#define VOL_UNIT 10;#endif #include <windows.h>//定時器void CALLBACK getPosition(HWND hwnd,UINT uMessage,UINT iTimerID,DWORD dwTime);//播放音樂void PlayMusic(HWND hwnd);//播放下一首歌曲void PlayNextMusic(HWND hwnd);
Time of Update: 2013-11-08
1. 排序後所有0元素在前,所有非零元素在後,且非零元素排序前後相對位置不變2. 不能使用額外儲存空間例子如下:輸入 0, 3, 0, 2, 1, 0, 0void Arrange(int* a, int n){ int k = n -1 ; for (int i = n -1; i >=0; --i) { if (a[i] == 0) {for (int j= i-1; j>=0; j--){if (a[j]!=0){a[i]=a[j]
Time of Update: 2013-11-08
,這就讓我 頭疼了;;還有一個 是 使用 的解決方案(這個才是真正無敵的方法)。流程設計器:流程設計器 的的手稿過程中,發現 不可避免 的有一個環節:演算法亮點:(Word LIKE '%cat%'),50000單詞,記憶體檢索時間 800ms;(Word DESC, ID ASC),50000單詞,記憶體排序時間 2400ms;演算法思想:演算法用法:外掛程式名稱: 關鍵字:
Time of Update: 2013-11-08
從今天開始,每天練習一道演算法題,今天是第一題-----放蘋果。把M個同樣的蘋果放在N個同樣的盤子裡,允許有的盤子空著不放,問共有多少種不同的分法?(用K表示)5,1,1和1,5,1 是同一種分法。第一行是要輸入的測試資料的數目t(0 <= t <= 20)。以下均包含二個整數M和N,以空格分開。1<=M,N<=10。對輸入的每組資料M和N,用一行輸出相應的K。 輸入:1 7 3(1表示輸入一組資料)輸出:8 輸入:2 8 4 7 3(2
Time of Update: 2013-11-08
//寫一個函數,轉換相對路徑為絕對路徑,比如:/home/abs/../temp/new/../,輸出路徑為:/home/temp。int RP2AP(const char* pInStr, char* pOutStr){if (pInStr==NULL || pOutStr==NULL) return 0;string str = pInStr;string strTemp;vector<string> vec_str;string strOut="";int
Time of Update: 2013-11-08
//返回結果的有效標誌 enum Status {VALID,IN_VALID}; int gStatus = VALID; int strToInt(const char* str) { long long result = 0;//儲存結果 gStatus = IN_VALID; //每次調用時都初始化為IN_VALID if(str != NULL) { const char* digit = str;
Time of Update: 2013-11-08
Jquery1.jQuery對象和DOM對象var domObj = document.getElementById("id"); //DOM對象var $obj = $("#id");
Time of Update: 2013-11-08
#include <iostream> using namespace std; struct ListNode { int m_nValue; ListNode *m_pNext; }; ListNode* CreateList(int val) { ListNode *pHead = new ListNode; pHead->m_nValue = val; pHead->m_pNext =