这里的高精度都是要去掉前导0的,

第一题:424 - Integer Inquiry

UVA:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=97&page=show_problem&problem=365

解题思路:模拟手动加法的运算过程,写一个高精度整数加法就可以了;减法,乘法,除法同样也是模拟手动过程。

解题代码:

  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <math.h>
  4. #include <algorithm>
  5. #include <string.h>
  6. #include <string>
  7. #include <map>
  8. using namespace std;
  9.  
  10. //#define LOCAL //Please annotate this line when you submit
  11.  
  12. #ifdef WINDOWS
  13. #define LL __int64
  14. #define LLD "%I64d"
  15. #else
  16. #define LL long long
  17. #define LLD "%lld"
  18. #endif
  19.  
  20. char num1[];
  21. int num2[], ans[];
  22.  
  23. int add()
  24. {
  25. int len = strlen(num1);
  26. if (len == && num1[] == '')
  27. return ;
  28. memset(num2, , sizeof(num2));
  29. int k = ;
  30. for (int i = len - ; i >= ; i --)
  31. {
  32. num2[k++] = num1[i] - '';
  33. }
  34. int up = ;
  35. for (int i = ; i < ; i ++)
  36. {
  37. ans[i] = ans[i] + num2[i] + up;
  38. up = ans[i]/;
  39. ans[i] %= ;
  40. }
  41. return ;
  42. }
  43.  
  44. int main()
  45. {
  46.  
  47. #ifdef LOCAL
  48. freopen("data.in", "r", stdin);
  49. freopen("data.out", "w", stdout);
  50. #endif
  51. memset (ans, , sizeof(ans));
  52. int cun = ;
  53. while ()
  54. {
  55. scanf ("%s", num1);
  56. if (add())
  57. continue;
  58. else
  59. {
  60. int i;
  61. for (i = ; i >= ; i --)
  62. if (ans[i])
  63. break;
  64. for ( ; i >= ; i --)
  65. printf("%d", ans[i]);
  66. puts("");
  67. break;
  68. }
  69. }
  70. return ;
  71. }

第二题:10106 - Product

UVA:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=97&page=show_problem&problem=1047

解题思路:此题是高精度整数乘法。

解题代码:

  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <math.h>
  4. #include <algorithm>
  5. #include <string.h>
  6. #include <string>
  7. #include <map>
  8. using namespace std;
  9. //#define LOCAL //Please annotate this line when you submit
  10. #ifdef WINDOWS
  11. #define LL __int64
  12. #define LLD "%I64d"
  13. #else
  14. #define LL long long
  15. #define LLD "%lld"
  16. #endif
  17. const int max_n = ;
  18. int num1[max_n], num2[max_n], ans[*max_n];
  19. char str1[max_n], str2[max_n];
  20. void ride()
  21. {
  22. memset(num1, , sizeof(num1));
  23. memset(num2, , sizeof(num2));
  24. memset(ans, , sizeof(ans));
  25. int len1 = strlen(str1);
  26. int k = , i;
  27. for (i = len1-; i >= ; i--)
  28. num1[k++] = str1[i] - '';
  29. int len2 = strlen(str2);
  30. for (i = len2 - , k = ; i >= ; i--)
  31. num2[k++] = str2[i] - '';
  32. int up = ;
  33. for (int j = ; j < max_n; j ++)
  34. {
  35. for (i = ; i < max_n; i ++)
  36. {
  37. ans[i+j] += num1[i]*num2[j] + up;
  38. up = ans[i+j]/;
  39. ans[i+j] %= ;
  40. }
  41. }
  42. for (i = *max_n-; i >= ; i --)
  43. if (ans[i])
  44. break;
  45. if (i < )
  46. i = ;
  47. for ( ; i >= ; i --)
  48. printf("%d", ans[i]);
  49. puts("");
  50. }
  51. int main()
  52. {
  53. #ifdef LOCAL
  54. freopen("data.in", "r", stdin);
  55. freopen("data.out", "w", stdout);
  56. #endif
  57. while (~scanf("%s", str1))
  58. {
  59. scanf("%s", str2);
  60. ride();
  61. }
  62. return ;
  63. }

第三题:465 - Overflow

UVA:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=97&page=show_problem&problem=406

解题思路:

    此题也是高精度加法,乘法。当然晚上有用atof秒杀的,既然是专题,还是写个高精度吧!这题也需要去掉前导0,比较与int型大小时,条件要判断好,我在这个条件这里因为少写了一个if语句结果WA了n次。o(╯□╰)o

ps:int数据最大值是2147483647;

解题代码:

  1. #ifdef WINDOWS
  2. #define LL __int64
  3. #define LLD "%I64d"
  4. #else
  5. #define LL long long
  6. #define LLD "%lld"
  7. #endif
  8. //#define LOCAL //Please annotate this line when you submit
  9. /********************************************************/
  10. #include <iostream>
  11. #include <stdio.h>
  12. #include <math.h>
  13. #include <algorithm>
  14. #include <string.h>
  15. #include <string>
  16. #include <map>
  17. using namespace std;
  18. const int max_n = ;
  19. int num1[max_n], num2[max_n], ans[max_n];
  20. char str1[max_n], str2[max_n], ope;
  21. bool jug1, jug2, juga;
  22. const int MAX[] = {,,,,,,,,,};
  23. int pos1, pos2;
  24. void add()
  25. {
  26. int up = ;
  27. int i;
  28. int t = pos1 > pos2 ? pos1 : pos2;
  29. for (i = ; i <= t+; i ++)
  30. {
  31. ans[i] = num1[i] + num2[i] + up;
  32. up = ans[i]/;
  33. ans[i] %= ;
  34. }
  35. for (i = t+; i >= ; i --)
  36. if (ans[i])
  37. break;
  38. /*
  39. for (int j = i; j >= 0; j --)
  40. cout << ans[j];
  41. cout << endl;
  42. */
  43. if (i > )
  44. juga = true;
  45. else if (i == )
  46. for (i = ; i >= ; i --)
  47. {
  48. if (ans[i] > MAX[i])
  49. {
  50. juga = true;
  51. break;
  52. }
  53. if (ans[i] < MAX[i])
  54. break;
  55. }
  56. }
  57. void mul()
  58. {
  59. int up = ;
  60. int i;
  61. for (i = ; i <= pos1 + ; i ++)
  62. for (int j = ; j <= pos2 + ; j ++)
  63. {
  64. ans[i+j] += num1[i]*num2[j] + up;
  65. up = ans[i+j]/;
  66. ans[i+j] %= ;
  67. }
  68. for (i = pos1+pos2+; i >= ; i --)
  69. if (ans[i])
  70. break;
  71. /*
  72. for (int j = i; j >= 0; j --)
  73. cout << ans[j];
  74. cout << endl;
  75. */
  76. if (i > )
  77. juga = true;
  78. else if (i == )
  79. for (; i >= ; i --)
  80. {
  81. if (ans[i] > MAX[i])
  82. {
  83. juga = true;
  84. break;
  85. }
  86. if (ans[i] < MAX[i])
  87. break;
  88. }
  89. }
  90. int main()
  91. {
  92. #ifdef LOCAL
  93. freopen("data.in", "r", stdin);
  94. freopen("data.out", "w", stdout);
  95. #endif
  96. while (~scanf ("%s %c %s", str1, &ope, str2))
  97. {
  98. jug1 = jug2 = juga = false;
  99. memset(num1, , sizeof (num1));
  100. memset(num2, , sizeof (num2));
  101. memset (ans, , sizeof (ans));
  102. pos1 = ;
  103. for (int i = strlen(str1) - , k = ; i >= ; i --)
  104. {
  105. num1[k ++] = str1[i] - '';
  106. if (num1[k-])
  107. pos1 = k - ;
  108. }
  109. if (pos1 > )
  110. {
  111. juga = true;
  112. jug1 = true;
  113. }
  114. else if(pos1 == )
  115. {
  116. for (int i = ; i >= ; i --)
  117. {
  118. if (num1[i] > MAX[i])
  119. {
  120. juga = true;
  121. jug1 = true;
  122. break;
  123. }
  124. if (num1[i] < MAX[i])
  125. break;
  126. }
  127. }
  128. pos2 = ;
  129. for (int i = strlen(str2) - , k = ; i >= ; i --)
  130. {
  131. num2[k ++] = str2[i] - '';
  132. if (num2[k-])
  133. pos2 = k-;
  134. }
  135. if (pos2 > )
  136. {
  137. jug2 = true;
  138. juga = true;
  139. }
  140. else if (pos2 == )
  141. {
  142. for (int i = ; i >= ; i--)
  143. {
  144. if (num2[i] > MAX[i])
  145. {
  146. juga = true;
  147. jug2 = true;
  148. break;
  149. }
  150. if (num2[i] < MAX[i])
  151. break;
  152. }
  153. }
  154. if ((pos1 == && num1[pos1] == ) || (pos2 == && num2[pos2] == ))
  155. juga = false;
  156. printf("%s %c %s\n", str1, ope, str2);
  157. if (ope == '+')
  158. add();
  159. else if (ope == '*')
  160. mul();
  161. else if (ope != '+' && ope != '*')
  162. juga = false;
  163. if (jug1)
  164. printf("first number too big\n");
  165. if (jug2)
  166. printf("second number too big\n");
  167. if (juga)
  168. printf("result too big\n");
  169. }
  170. return ;
  171. }

第四题:748 - Exponentiation

UVA:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=97&page=show_problem&problem=689

解题思路:高精度乘法;但这里是浮点型,我们只需把小数点去了,进行计算,输出时再找准小数点位置输出就可,至于小数点位置的话,举个列子:13.4*3.54,两个数长度都是4,第一个数字小数点在 2 的位置,小数点位数为 4-2-1 = 1;第二个数小数点在 1 的位置,小数点位数为 4 - 1 - 1 = 2;他们的乘积为 47.436,小数点的位数为 3 = 1 + 2;也就是数字一的位数与数字二的位数的和。此题还需将后缀0去掉。

解题代码:

  1. #ifdef WINDOWS
  2. #define LL __int64
  3. #define LLD "%I64d"
  4. #else
  5. #define LL long long
  6. #define LLD "%lld"
  7. #endif
  8. //#define LOCAL //Please annotate this line when you submit
  9. /********************************************************/
  10. #include <iostream>
  11. #include <stdio.h>
  12. #include <math.h>
  13. #include <algorithm>
  14. #include <string.h>
  15. #include <string>
  16. #include <map>
  17. using namespace std;
  18. const int max_n = ;
  19. string str;
  20. int num1[max_n], num2[max_n], ans[*max_n];
  21. int point, Pow;
  22. int len1, len2;
  23. void change()
  24. {
  25. memset(num1, , sizeof(num1));
  26. memset(num2, , sizeof(num2));
  27. point = str.find(".");
  28. int len = str.length();
  29. if (point != -)
  30. point = len - point - ;
  31. int k = ;
  32. for (int i = len - ; i >= ; i --)
  33. {
  34. if (str[i] == '.')
  35. continue;
  36. num1[k] = str[i] - '';
  37. num2[k ++] = str[i] - '';
  38. }
  39. len1 = len2 = k;
  40. }
  41. void mult()
  42. {
  43. memset(ans, , sizeof (ans));
  44. int up = ;
  45. for (int i = ; i <= len1; i ++)
  46. for (int j = ; j <= len2; j ++)
  47. {
  48. ans[i+j] += num1[i]*num2[j] + up;
  49. up = ans[i+j]/;
  50. ans[i+j] %= ;
  51. }
  52. int bg;
  53. for (int i = len1 + len2; i >= ; i--)
  54. if (ans[i])
  55. {
  56. bg = i;
  57. break;
  58. }
  59. for (int i = ; i <= bg; i ++)
  60. num2[i] = ans[i];
  61. len2 = bg + ;
  62. }
  63. void output()
  64. {
  65. int i, j, k;
  66. for (i = max_n-; i >=; i--)
  67. {
  68. if(num2[i])
  69. break;
  70. if (i == Pow*point)
  71. {
  72. i --;
  73. break;
  74. }
  75. }
  76. for (j = ; j <= i; j ++)
  77. {
  78. if (num2[j])
  79. break;
  80. if (j == Pow*point)
  81. {
  82. j ++;
  83. break;
  84. }
  85. }
  86. if (i+ == Pow * point)
  87. printf(".");
  88. for (k = i; k >= j; k --)
  89. {
  90. printf("%d", num2[k]);
  91. if (k == Pow*point && k > j)
  92. printf(".");
  93. }
  94. printf("\n");
  95. }
  96. int main()
  97. {
  98. #ifdef LOCAL
  99. freopen("data.in", "r", stdin);
  100. freopen("data.out", "w", stdout);
  101. #endif
  102. while (cin >> str)
  103. {
  104. scanf ("%d", &Pow);
  105. change();
  106. for (int i = ; i < Pow; i ++)
  107. mult();
  108. output();
  109. }
  110. return ;
  111. }

第五题:10494 - If We Were a Child Again

UVA:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=97&page=show_problem&problem=1435

解题思路:此题是高精度除法,题目只需高精度除以低精度,但我想练习一下就写了高精度除以高精度,过程是模拟短除法来做,配合高精度正整数减法。此题题意里除数没有包含0,但数据里我想应该是有的,因为我少了为0的判断就WA,加上就AC。所以0做为除数还是要判断一下。

解题代码:

  1. //#define LOCAL //Please annotate this line when you submit
  2. #ifdef WINDOWS
  3. #define LL __int64
  4. #define LLD "%I64d"
  5. #else
  6. #define LL long long
  7. #define LLD "%lld"
  8. #endif
  9.  
  10. /********************************************************/
  11. #include <iostream>
  12. #include <stdio.h>
  13. #include <math.h>
  14. #include <algorithm>
  15. #include <string.h>
  16. #include <string>
  17. #include <map>
  18. #define CLE(name) memset(name, 0, sizeof(name))
  19. using namespace std;
  20.  
  21. const int max_n = ;
  22. int num1[max_n], num2[max_n], num3[max_n];//被除数和除数
  23. int len1, len2, len3;
  24. string str1, ope, str2;
  25. int len_str1, len_str2;
  26. int get_num_pos;
  27. int quo[max_n], res[max_n];//商和余数
  28. int len_quo, len_res;
  29. bool had_red;
  30.  
  31. bool get_num3()
  32. {
  33. int i, k, j;
  34. k = ;
  35. len3 ++;
  36. if (get_num_pos + len3 > len1)
  37. {
  38. for (i = len3 - ; i >= ; i --)
  39. if (num3[i])
  40. break;
  41. for (j = i; j >= ; j --)
  42. res[len_res++] = num3[j];
  43. return false;
  44. }
  45. for (i = get_num_pos + len3 - ; i >= get_num_pos; i --)
  46. num3[k ++] = num1[i];
  47. return true;
  48. }
  49.  
  50. bool cpt()//将余数补在num1上
  51. {
  52. int i, j;
  53. for (i = get_num_pos - , j = len_res - ; j >= ; j --, i --)
  54. num1[i] = res[j];
  55. get_num_pos = i + ;
  56. if (get_num3())
  57. {
  58. for (i = ; i < len_res; i ++)
  59. res[i] = ;
  60. len_res = ;
  61. return true;
  62. }
  63. else return false;
  64. }
  65.  
  66. void change()
  67. {
  68. CLE(num1); CLE(num2);
  69. CLE(num3); CLE(res); CLE(quo);
  70.  
  71. len_str1 = str1.length();
  72. len_str2 = str2.length();
  73. int k = ;
  74. bool had = false;
  75. for (int i = ; i < len_str1; i ++)
  76. {
  77. if (str1[i] == '' && !had)
  78. continue;
  79. else
  80. {
  81. num1[k++] = str1[i] - '';
  82. had = true;
  83. }
  84. }
  85. len1 = k;
  86. k = ;
  87. int bg = ;
  88. for(int i = ; i < len_str2; i ++)
  89. if (str2[i] != '')
  90. {
  91. bg = i;
  92. break;
  93. }
  94. for (int i = len_str2 - ; i >= bg; i --)
  95. num2[k++] = str2[i] - '';
  96. len2 = k;
  97. }
  98.  
  99. bool cmp()
  100. {
  101. if (len2 > len3)
  102. return false;
  103. else if(len3 > len2)
  104. {
  105. if (num3[len3 - ] == )
  106. return false;
  107. return true;
  108. }
  109. else
  110. {
  111. for (int i = len2 - ; i >= ; i --)
  112. {
  113. if (num2[i] > num3[i])
  114. return false;
  115. if (num2[i] < num3[i])
  116. return true;
  117. }
  118. }
  119. return true;
  120. }
  121.  
  122. bool cmp_input()
  123. {
  124. if (len2 == && num2[] == )
  125. return false;
  126. if (len1 < len2)
  127. return false;
  128. if (len1 == len2)
  129. {
  130. for (int i = ; i < len1; i ++)
  131. {
  132. if (num1[i] > num2[len2 - i -])
  133. return true;
  134. if (num1[i] < num2[len2 - i - ])
  135. return false;
  136. }
  137. }
  138. return true;
  139. }
  140.  
  141. void red()
  142. {
  143. int reduce_num = ;
  144. if (cmp())
  145. {
  146. get_num_pos += len3;
  147. do
  148. {
  149. had_red = true;
  150. int up = ;
  151. for (int i = ; i < len3; i ++)
  152. {
  153. num3[i] = num3[i] - num2[i] - up;
  154. if (num3[i] < )
  155. {
  156. num3[i] += ;
  157. up = ;
  158. }
  159. else up = ;
  160. }
  161. int i;
  162. for (i = len3 - ; i >= ; i --)
  163. if (num3[i])
  164. {
  165. len3 = i + ;
  166. break;
  167. }
  168. if (i < )
  169. len3 = ;
  170. reduce_num ++;
  171. }while(cmp());
  172. quo[len_quo++] = reduce_num;
  173. int k = ;
  174. for (int i = len3 - ; i >= ; i --)
  175. {
  176. res[k ++] = num3[i];
  177. num3[i] = ;
  178. }
  179. len_res = len3;
  180. if(cpt())
  181. red();
  182. else return;
  183. }
  184. else
  185. {
  186. if (had_red)
  187. quo[len_quo ++] = ;
  188. if (len3 == && num3[] == )
  189. {
  190. len3 = ;
  191. get_num_pos ++;
  192. }
  193. if (get_num3())
  194. red();
  195. }
  196. return;
  197. }
  198.  
  199. void output()
  200. {
  201. int i, j;
  202. if (len_quo == )
  203. len_quo = ;
  204. if (len_res == )
  205. len_res = ;
  206. if (ope[] == '/')
  207. {
  208. for (int i = ; i < len_quo; i ++)
  209. printf("%d", quo[i]);
  210. puts("");
  211. }
  212. else if (ope[] == '%')
  213. {
  214. for (i = ; i < len_res; i ++)
  215. printf("%d", res[i]);
  216. puts("");
  217. }
  218. return;
  219. }
  220.  
  221. int main()
  222. {
  223. #ifdef LOCAL
  224. freopen("data.in", "r", stdin);
  225. freopen("data.out", "w", stdout);
  226. #endif
  227. while (cin >> str1 >> ope >> str2)
  228. {
  229. had_red = false;
  230. len_quo = ;
  231. len_res = ;
  232. len3 = ;
  233. get_num_pos = ;
  234. change();
  235. if (cmp_input())
  236. red();
  237. else
  238. for (int i = ; i < len1; i ++)
  239. res[len_res++] = num1[i];
  240. output();
  241. }
  242.  
  243. return ;
  244. }

此题附上几组数据:

input:

8947186453786576673428174634 / 2147483647
1672563736 / 176317
17673764 / 74376
178226322222245124732648484 % 8276424
24969 / 123
100100 / 10
0 / 123
1002 % 10
1324211111111111111 / 456679284
21474836447 / 2147483647

output:

4166358363792735634
9486
237
3883828
203
10010
0
2
2899652245
9

刘汝佳 算法竞赛-入门经典 第二部分 算法篇 第五章 2(Big Number)的更多相关文章

  1. 刘汝佳 算法竞赛-入门经典 第二部分 算法篇 第五章 1(String)

    第一题:401 - Palindromes UVA : http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8 ...

  2. 刘汝佳 算法竞赛-入门经典 第二部分 算法篇 第五章 3(Sorting/Searching)

    第一题:340 - Master-Mind Hints UVA:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Item ...

  3. 刘汝佳 算法竞赛-入门经典 第二部分 算法篇 第六章 1(Lists)

    127 - "Accordian" Patience 题目大意:一个人一张张发牌,如果这张牌与这张牌前面的一张或者前面的第三张(后面称之为一位置和三位置)的点数或花式相同,则将这张 ...

  4. 刘汝佳 算法竞赛-入门经典 第二部分 算法篇 第六章 2(Binary Trees)

    112 - Tree Summing 题目大意:给出一个数,再给一颗树,每个头节点的子树被包含在头节点之后的括号里,寻找是否有从头节点到叶子的和与给出的数相等,如果有则输出yes,没有输出no! 解题 ...

  5. 算法竞赛入门经典第二版 TeX中的引号 P47

    #include<bits/stdc++.h> using namespace std; int main(){ ; while( (c = getchar()) !=EOF) //get ...

  6. 算法竞赛入门经典第二版 蛇形填数 P40

    #include<bits/stdc++.h> using namespace std; #define maxn 20 int a[maxn][maxn]; int main(){ ; ...

  7. 算法竞赛入门经典第二版 竖式问题 P42

    #include<bits/stdc++.h> using namespace std; int inset(char *s,int num) { //判断数字是否在数字集中 int le ...

  8. 算法竞赛入门经典第二版 回文词P49

    #include<bits/stdc++.h> using namespace std; char rev[]="A 3 HIL JM O 2TUVWXY51SE Z 8 &qu ...

  9. 算法竞赛入门经典第二版第二章习题-(练习Java和C++语法)

    习题2-1水仙花数(daffodil) 输出1000-999中所有的水仙花数.若三位数ABC满足ABC = A3+B3+C3,则称其为水仙花数. Java: package suanfa; publi ...

随机推荐

  1. .NET开源工作流RoadFlow-流程设计-流程步骤设置-基本设置

    流程属性设置完成后点击确定之后,即可进行流程步骤设置了. 点击工具栏上的步骤按钮,即可添加一个新步骤. 在新步骤图形上双击即可弹出该步骤相应属性设置框. 步骤ID:系统自动为该步骤生成的唯一ID. 步 ...

  2. C++ 的全局构造与析构函数

    我们知道一般的C/C++ 的程序是从main函数开始的,然后在main函数结束后程序结束.但是不然,在main函数开始执行前,已经有其他的指令被执行了. 为了程序的顺利执行,首先要初始化执行环境,比如 ...

  3. 基于Elasticsearch的自定义评分算法扩展

    实现思路: 重写评分方法,调整计算文档得分的过程,然后根据function_score或script_sort进行排序检索.   实现步骤: 1.新建java项目TestProject,引入Elast ...

  4. dede 忘记密码在数据库中修改方法

    如何找回或修改dedecms后台管理员登录密码呢? 一个客户把密码忘了,找了很长一会没几个靠谱的回答,dede是使用md5加密,但是,它是显示32位md5加密码从第6位开始的20位 方法是直接修改其m ...

  5. @property @synthesize的含义以及误区。

    @property的作用是定义属性,声明getter,setter方法.(注意:属性不是变量) @synthesize的作用是实现属性的,如getter,setter方法. 在声明属性的情况下如果重写 ...

  6. Client–server model

    Client–server model From Wikipedia, the free encyclopedia The client–server model of computing ] Oft ...

  7. Spark 3000门徒第二课scala面向对象总结

    昨晚听了王家林老师3000门徒spark系列课程的第二课,讲述了scala面向对象知识,并且带着过了一遍Spark核心类:SparkContent,RDD的代码,下面写一下心得: RDD是抽象类,实现 ...

  8. Java Day 07

    构造函数 函数名与类名相同 不用定义返回值类型 没有具体的返回值 作用:给对象初始化值 默认构造函数 如果没有自己定义构造函数,系统会自动生成: 如果定义了,则默认构造函数不会自动生成. 构造函数与一 ...

  9. 微软职位内部推荐-SDE II

    微软近期Open的职位: Senior Software Development Engineer Job Title: Senior Development Engineer Division: V ...

  10. postmortem report of period M1

    一.设想和目标 1.我们的软件主要要解决学长设计的学霸系统中视频及文档的浏览功能问题. 2.时间相对充裕.不过对于我们这些零基础的人来说还是比较困难. 3.我们团队中不同意见通常会进行进一步讨论,说出 ...