Problem DescriptionZYBplayed a game namedNumberBombwith his classmates in hiking:a host keeps a number in[1,N]in mind,thenplayers guess a number in tu...
分类:
其他好文 时间:
2015-12-09 17:10:38
阅读次数:
150
题目传送门题意:训练指南P186分析:主要为了熟悉STL中的stack,queue,priority_queue,尤其是优先队列从小到大的写法#include using namespace std;int main(void) { int n; while (scanf ("%d", &n) ==...
分类:
其他好文 时间:
2015-12-07 20:16:28
阅读次数:
136
You are playing the followingBulls and Cowsgame with your friend: You write down a number and ask your friend to guess what the number is. Each time y...
分类:
其他好文 时间:
2015-12-04 10:31:27
阅读次数:
102
1.6 死循环1.7 1 #lang racket 2 (define (square x) (* x x)) 3 (define (sqrt-iter guess x) 4 (if (good-enough? guess x) 5 guess 6 (sqrt-iter...
分类:
其他好文 时间:
2015-11-28 10:33:41
阅读次数:
171
1 #include 2 using namespace std; 3 int n; 4 double res[111],G[111][111]; 5 void guess(int ii) 6 { 7 int i,j; 8 double first=G[ii][ii],first1...
分类:
其他好文 时间:
2015-11-26 18:39:58
阅读次数:
137
盲点:1. 多组数据时 每层循环都要清空或恢复初始值!!!初始值尤其注意类似flag,sum,min,max...的变量清空则是针对各种数据结构如array,vector,stack,queue...其中对ADT(Abstract Data Type)应做如下操作:while(!a.empty())...
分类:
其他好文 时间:
2015-11-20 16:49:56
阅读次数:
129
web表单 web表单是浏览者和网之间的一个互动平台,完成浏览器和服务器之间的数据交互。1、用Flask-WTF来处理表单 (1)在根目录下编辑扩展配置--config.pyCSRF_ENABLED = TrueSECRET_KEY = 'you-will-never-guess'CSRF_ENA....
分类:
其他好文 时间:
2015-11-07 20:26:54
阅读次数:
341
https://leetcode.com/problems/bulls-and-cows/Examples:Secret: 1807 Secret: 1123Guess: 7810 ====> "0A3B" Guess: 0111 ===...
分类:
其他好文 时间:
2015-11-04 07:05:48
阅读次数:
230
You are playing the followingBulls and Cowsgame with your friend: You write a 4-digit secret number and ask your friend to guess it. Each time your fr...
分类:
其他好文 时间:
2015-11-03 09:16:52
阅读次数:
167
You are playing the followingBulls and Cowsgame with your friend: You write a 4-digit secret number and ask your friend to guess it, each time your fr...
分类:
其他好文 时间:
2015-11-02 06:43:30
阅读次数:
246