Time of Update: 2013-11-08
題目連結: sdutoj 1129 電路穩定性/*【題目描述】Heinz有一個電路,電路上有n個元件。已知元件i損壞而斷開的機率是Pi(i=1,2,...,n,0≤pi≤1)。請你幫Heinz算出整個電路斷路的機率。元件的串連方式很簡單,對電路的表示如下:(1)一個元件是最小的電路,用A表示元件1,B表示元件2,如此類推。(2)k個電路組成的串聯電路表示為電路1,電路2,......,電路k。注串聯電路用“,”號隔開。(3)k個電路組成的並聯電路表示為(電路1)(電路2)......(電路k)。
Time of Update: 2013-11-08
地區動歸的問題#include<stdio.h>#include<string.h>#include<iostream>#include<algorithm>using namespace std;int n;int a[51];int vis[51][51];int num[51][51];int dll(int l,int r){ int i; if(num[l][r]!=-1)return num[l][r];
Time of Update: 2013-11-08
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.void threeSumHelper(vector<int> &num, int index, vector<int> &path,
Time of Update: 2013-11-08
'e'. He was a member of the Oulipo group. A quote from the book:'T's is not unusual. And they never use spaces.'A','B', 'C', …, 'Z'} and two finite strings over that alphabet, a wordW and a text T, count the number of occurrences of W inT. All the
Time of Update: 2013-11-08
題意:很複雜的題意,我描述不清楚。題目連結:http://acm.bnu.edu.cn/bnuoj/contest_show.php?cid=3033#problem/33526大致是,給定一個起點,一個終點,和一些牆,這些牆是不能越過的,然後一個人他每次走可以往四個方向走,可以加速,可以減速,也可以勻速。也不一定是四個方向,因為他有一個VX,VY,所以每次走的方向其實都是不固定的,所以的四個方向就是他加速度的方向就是這四個。大家理解就好。然後要從起點開始,走到終點,問最少需要多少步,而且走到終
Time of Update: 2013-11-08
命令模式(Command):將一個請求封裝為一個對象,從而使你可以不同的請求對客戶進行參數化;對請求排隊或記錄請求日誌,以及支援可撤銷的操作。 命令模式結構圖: Command類,用來聲明執行操作的介面。 class Command{ protected: Receiver
Time of Update: 2013-11-08
1 安裝1.1 首先 arbbitmq是用愛爾蘭這種語言去編寫的,所以,需要這種語言支援,那就需要下載以下幾個包去安裝來搭建環境package com.abin.test;import java.io.IOException;import com.rabbitmq.client.Channel;import com.rabbitmq.client.Connection;import com.rabbitmq.client.ConnectionFactory;public class Send {
Time of Update: 2013-11-08
最近在用DEDE做項目,遇到一個需求是要在article_image.htm模板中直接取出附加表addonimages中的某一記錄的imgurls欄位的內容。而這條記錄是不斷變化的,比如我點擊了《武夷山》圖集,那麼article_image.htm中就要讀取aid=94這條記錄的imgurls欄位,比如我點擊了《絲瓜架》圖集,那麼article_image.htm中就要讀取aid=90這條記錄的imgurls欄位,因為圖片文章模板只有一個,也就是說article_image.htm讀取的內容隨著
Time of Update: 2013-11-08
#include <stdio.h>#include <stdlib.h>#include "queue.h"int main(){ int i; Type x; Type arr[] = {3,1,2,5,7,9}; QUEUE *q = NULL; q = CreateQueue(10); if(NULL == q) return
Time of Update: 2013-11-08
1、讓懸掛物體走直線。2、讓懸掛物體畫圓。3、在TFT屏上設定座標並讓懸掛物從原點走到該座標。4、在TFT屏上觸摸一點顯示出該點座標並使懸掛物從原點運動到該座標。 http://blog.csdn.net/a18716374124/article/details/10372529for(i=1; i<100; i++)//第一象限{now_x1 = x0 +
Time of Update: 2013-11-08
/* * 1326_1.cpp * * Created on: 2013年10月6日 * Author: Administrator */#include <iostream>#include <cstdio>using namespace std;int main(){ char begin[20]; char end[20]; char number[20];int length;int sum =
Time of Update: 2013-11-08
題目描述:思路:採用遞迴的思想,父結點的深度 = max{左右兒子深度} +1/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public:
Time of Update: 2013-11-08
在學習android時,想做一個多人聊天室,不知如何動手想先做一個純java的簡單多人聊天室,理理思路通過Socket通訊端進行資料轉送用到的知識點是:Socket,ServerSocket, 多線程 伺服器程式:import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.io.
Time of Update: 2013-11-08
.void printacircle(vector<vector<int> > &matrix, vector<int> &path, int num) { int row = matrix.size();int col = matrix[0].size();for(int i = num; i < col-num; i++)path.push_back(matrix[num][i]);if( 2*num
Time of Update: 2013-11-08
嗯,這是leetcode最新加的一道題目, 也是很經典的演算法類的題目了。解法也不止一種。這裡寫一下利用雙端隊列怎麼做這道題求出所有的合法的起點把。1, 單調的雙端隊列1)什麼是雙端隊列雙端隊列是一個可以在頭部和尾部都可以刪除和插入元素的隊列。站看之下似乎沒有什麼特別的玄機。但是當我們將其用於掃描一個大小為n的數組,數組的沒個元素都最多進一次,最多被刪除一次。那麼我們對這個隊列的操作複雜度就是N,對雙端隊列的應用重點就在於何時插入元素,何時刪除元素,以維護某種性質。
Time of Update: 2013-11-08
這個問題可以看作是一種特殊的石子遊戲。以第二個範例為例:1 5 6 7 9 12 14 17第一個棋子不能向左移動了。第二個棋子可以向左移動3個格子。第三個棋子也不能移動了,以此類推,可以得到這樣一個數列:0 3 0 0 1 2 1 2,第n個數字代表第n個棋子可以移動的步數。考慮一下把第二個棋子向左移動一格的情況,原數列變為:0 2 1 0 1 2 1
Time of Update: 2013-11-08
paip.提升使用者體驗-----c++ gcc 命令在notepad++擴充中的配置..作者Attilax , EMAIL:1466519819@qq.com 來源:attilax的專欄地址:http://blog.csdn.net/attilax1.建立主題檔案--------------------D:\Program Files\Notepad++\themes\gcccmd.xmlglobal styles>&
Time of Update: 2013-11-08
分頁以及查詢GemFile# 資料查詢gem 'pacecar', '1.5.3' # 給模型添加實用的scopegem 'kaminari', '0.14.1' # 分頁支援Modelsscope :like_filter, lambda { |query| if query.blank? { :conditions => ['TRUE'] } else { :conditions => [ 'login like ?
Time of Update: 2013-11-08
題目連結地址 10137 - The Trip/** 10137 - The Trip* 作者 儀冰* 語言 C++* QQ 974817955** 精度處理一小弄。n個學生,每個學生有一個花費,* 求出平均值,求小於平均值的總和(less),* 求出大於平均值的總和(greatly),最後再進行less和grealy比較,輸出最大的。*/#include <iostream>#include
Time of Update: 2013-11-08
Qt Creator編譯時間:cannot open file 'debug\.exe' File not found利用Qt Creator編譯工程時,出現如題目所示的錯誤,其中紅色部分是工程名稱。在Qt Creator的Build欄中,點擊clean all 和 clean project