Time of Update: 2018-12-03
我不知道各位,一提起C++,第一感覺是什嗎?而據俺的觀察,許多人幾乎成了“談C色變”。不管是C還是C++,一直以來都被很多人視為相當難學的玩意兒,幸好只是一個C++,沒有C--,C**和C//,不然,那還得了?曾記得,某年某月某日,在某論壇上看到有牛人說“C++++”,當時我猜想這是啥玩意兒,後來經過一番順虅摸瓜,深入調查發現,原來有人作了這麼個有趣的等式:C# ==
Time of Update: 2018-12-03
time limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputThe Bitlandians are quite weird people. They do everything differently. They have a different alphabet so they have a different definition for a
Time of Update: 2018-12-03
seven讓我把C++ primer第四版演算法這張好好看看,我看完後就摘抄了這麼點而已1、findvector<int>::const_iterator result=find(vec.begin(),vec.end(),search_value);int a[6];int *result=find(a,a+6,search_value);2、accumulateint
Time of Update: 2018-12-03
今天學會了如何用C++進行二進位隱藏檔,和seven在QQ上討論了很久,一直沒有做出來,後來發現是一個函數的問題。估計很多人都知道用ofstream out("test.binary",ios::binary|ios::out);和這個ifstream in("test.binary",ios::binary|ios::in);這兩個是設定檔案的讀取和寫入的方式,這裡是按照二進位,不過有一點很重要,就是不能直接用out << 和 in>>,需要用read
Time of Update: 2018-12-03
#i nclude <stdio.h>main(t,_,a)char *a;{return!0<t?t<3?main(-79,-13,a+main(-87,1-_,main(-86,0,a+1)+a)):1,t<_?main(t+1,_,a):3,main(-94,-27+t,a)&&t==2?_<13?main(2,_+1,"%s %d
Time of Update: 2018-12-03
time limit per test5 secondsmemory limit per test64 megabytesinputstandard inputoutputstandard outputA new e-mail service "Berlandesk" is going to be opened in Berland in the near future. The site administration wants to launch their project as soon
Time of Update: 2018-12-03
using System;public class test{ static string Add(string x, string y) { string s3 = ""; int l1 = x.Length; int l2 = y.Length; Console.WriteLine("s1.length : {0} s2.length : {1} ", l1, l2); while (l1 > 0 ||
Time of Update: 2018-12-03
#include <iostream>#include <conio.h>#include <windows.h>#include <string.h>#include <winuser.h>#include <wincon.h>HANDLE hOut ;HANDLE hIn ;void DeleteLine(int row); // 刪除一行void MoveText(int x, int y, SMALL_RECT
Time of Update: 2018-12-03
今天遇到一個問題,需要客戶在點擊一個按鈕後,能夠提示是否確定,如果確定,則要求使用者輸入一個數字,並講這個數字寫入資料庫。剛開始覺得很簡單,後來遇到很多問題,也搜了很多JS和後台互動的東西,最後做出來了,看來有些東西還是需要動手才能有效果。 好吧說思路。前台JS有個一confirms()函數,用於實現提醒使用者,和擷取使用者輸入值。這個值儲存在<input id="username" runat ="server" name="username" value="10" />&
Time of Update: 2018-12-03
很多人對學習C語言感到無從下手,經常問我同一個問題:究竟怎樣學習C語言?我是一個教師,已經開發了很多年的程式,和很多剛剛起步的人一樣,學習的第一個電腦語言就是C語言。經過這些年的開發,我深深的體會到C
Time of Update: 2018-12-03
time limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputThe little girl loves the problems on array queries very much.One day she came across a rather well-known problem: you've got an array
Time of Update: 2018-12-03
JS實現頁面跳轉第一種: <script language="javascript" type="text/javascript"> window.location.href="login.jsp?backurl="+window.location.href; </script>第二種: <script language="javascript">alert("返回");window.history.back(-1);
Time of Update: 2018-12-03
第一種最簡單,但沒有考慮安全執行緒,在多線程時可能會出問題,不過俺從沒看過出錯的現象,表鄙視我……public class Singleton{ private static Singleton _instance = null; private Singleton(){} public static Singleton CreateInstance() { if(_instance == null) { _instan
Time of Update: 2018-12-03
從網上找到一套Linux
Time of Update: 2018-12-03
再熟悉不過的資料結構了,也是普遍的一個基礎貼代碼~~~#define MAXSIZE 10typedef struct{ int data[MAXSIZE]; int top;}SqStack;SqStack sqt;int total=4;void InitStack(SqStack &st){ st.top=-1;}int StackEmpty(SqStack st){ return (st.top==-1);}int push(SqStack
Time of Update: 2018-12-03
(1)MessageBox(NULL,TEXT("世界你好"),TEXT("問好"),MB_OK); 第一個參數暫時不講;第二個是本文;第三個是標題(Caption);第四個是類型。MB_OK就是表示有一個OK按鈕【確定】)TEXT是一個宏,當字串中有中文的時候最好用TEXT來包圍這個字串,雖然不使用TEXT在VC6中沒問題,但是在VC7中有問題,而且微軟也建議使用TEXT宏,因此在涉及到中文的場合要使用它。他的作用就是把中文轉化成不會亂碼的格式。(暫時這麼認為)。_T("問好"
Time of Update: 2018-12-03
前幾天在論壇看到一個文章,計算群組合數,有點數學基礎的都知道,求組合用公式Cnr(= n!/(n-r)!r!)可以得到組合數。怎樣通過程式實現得到每一個組合序列呢?以整型資料為例:Ex:N = {1,2,3,4,5}從N中5個元素取2個得到12 13 14 15 23 24 25 34 35 45
Time of Update: 2018-12-03
comes from: http://watershitter.iteye.com/blog/4776151 java 中 c語言函數的聲明 public native static void greeting(); //就像是介面聲明一樣,不過有native! 2 編譯 javac HelloNative.java ,然後使用 javah javah HelloNative會自動產生c的標頭檔HelloNative.h3 產生的標頭檔 的 第一句子為 #include
Time of Update: 2018-12-03
返回目錄 題目大意:輸入今年(2011)虛歲年齡,輸出他的生肖屬相。 題目類型:基礎類比題 題目分析:很明顯的%12迴圈數,0~11記錄生肖,注意生肖順序應該是從今年的 兔 倒著數過去的。 代碼: //子(鼠)醜(牛)寅(虎)卯(兔)辰(龍)巳(蛇)午(馬)未(羊)申(猴)酉(雞)戌(狗)亥(豬)//兔//"Rabbit", "Dragon", "Snake", "Horse", "Ram", "Monkey", "Rooster", "Dog", "Pig", "Rat", "Ox",
Time of Update: 2018-12-03
因為想要學DFS && BFS。好像必須得會棧和隊列。而這倆東東是資料結構的東東。。下學期會講,額,以前一直沒耐心好好看,今天中午看了好長時間,自己把代碼寫出來了,雖然很簡單吧,呵呵,不過蠻有成就感的,(*^__^*) 嘻嘻…… 棧,先進後出,嗯,雖然我現在沒怎麼做關於這方面的題,還不會應用,不過理解萬歲,嘻嘻,以後會用得著的~ #include <stdio.h>#include <stdlib.h>int n,N; //N是個數int s[800]