2017 8 8學習小結

2021-08-05 21:54:52 字數 1223 閱讀 7336

1585:

analysis

用乙個標記變數symbol判斷是否連續即可

#include

#include

using

namespace

std;

#define maxn 85

char str[maxn];

int main()

else

score += j;

}else

}cout

<< score 0;}

1225:

analysis

直接暴力即可

#include

#include

using

namespace

std;

#define maxn 11

int m[maxn];

int main()

}// m[0]++;

for(int i=0; i<10; ++i)

}return

0;}

489:

analysis

就是**實現能力

#include

#include

#define maxn 100

int left,chance;

//left還需要猜left個位置

//chance表示允許錯誤的剩餘次數

char s1[maxn],s2[maxn];

//s1答案 s2猜的

int win,lose;

void guess(char ch)

}if(bad)

chance--;

if(!chance)

lose = 1;

if(!left)

win = 1;

return;

}int main()

if(win)

printf("you win.\n");

else

if(lose)

printf("you lose.\n");

else

printf("you chickened out.\n");

}return

0;}

面試小結 學習小結

1 string 字串常量,每次改變都會生成乙個新的物件 stringbuffer 執行緒安全 變數 改變不會生成乙個新的物件 stringbuilder 非執行緒安全 在非多執行緒的情況下,用stringbuilder會快些 2 activity的四種啟動模式 singletop 棧頂正好是該ac...

2017 8 8測試 題四 迷之階梯

題解 本題是動態規劃,不過不同往常的是它還會往後退,向前跳。所以,當前階梯可能是從前面的退k步過來的,或從後面跳過來的 動態轉移方程 min f i j j 1,f k var a,f array 0.200 of longint c array 0.31 of int64 n,i,j,k long...

python小結教學 python學習小結

python具有非常豐富的資料型別,包括字串,列表,元組,字典集合等,每種資料型別的特點都大一樣,好好利用他們 可以讓你的python程式設計變的非常輕鬆,要好好利用就應該充分了解他們的特點,下面對他們的特點進行一些總結。python字串 字串在python中是乙個單個字元的字串的序列,可以對字串進...