http://hao.199it.com/mobile/zxdc.html 大数据导航 免费工具(31) 谷歌表单 腾讯调查 麦客 问道网 问答箱子 问卷星 调查派 微调查 SurveyMonkey Qualtrics Dosurvey OQSS问卷 iCTR Typeform Free Tally ...
分类:
其他好文 时间:
2019-12-29 14:55:28
阅读次数:
148
typedef struct Node *PtrToNode; struct Node { /* 队列中的结点 */ ElementType Data; PtrToNode Next; }; typedef PtrToNode Position; struct QNode { Position Fr ...
分类:
其他好文 时间:
2019-12-29 13:00:22
阅读次数:
57
原题链接在这里:https://leetcode.com/problems/minimum-area-rectangle-ii/ 题目: Given a set of points in the xy-plane, determine the minimum area of any rectangl ...
分类:
其他好文 时间:
2019-12-29 11:27:56
阅读次数:
68
题目如下: You are given a square board of characters. You can move on the board starting at the bottom right square marked with the character 'S'. You nee ...
分类:
其他好文 时间:
2019-12-29 10:57:18
阅读次数:
68
date:(-set,设置时间)将显示日期时间的功能 lscpu:将在终端打印cpu的详情信息 free-h:打印内存,-h的选项意思为,将结果转换为更合适的单位显示 sudo:后面接命令,执行该命令时携带管理员权限,因为正常情况下不是默认使用管理员(root)权限 的 sudo fdisk -l ...
分类:
系统相关 时间:
2019-12-28 18:54:51
阅读次数:
103
New stuff * kbmMW Community Edition (CE) made available. CE contains most Enterprise Edition features and is FREE to use under certain circumstances. ...
分类:
其他好文 时间:
2019-12-28 16:26:31
阅读次数:
111
拉丁方阵(英语:Latin square)是一种 n × n 的方阵,在这种 n × n 的方阵里,恰有 n 种不同的元素,每一种不同的元素在同一行或同一列里只出现一次。以下是两个拉丁方阵举例: 拉丁方阵有此名称是因为瑞士数学家和物理学家欧拉使用拉丁字母来做为拉丁方阵里的元素的符号。 算法步骤: 在 ...
分类:
编程语言 时间:
2019-12-28 16:21:57
阅读次数:
354
Expected Square Beauty 有一个长度为 n 的数列,第 i 个数的取值范围为 $[l_i,r_i]$ ,定义一个数列的价值为这个数列极长连续相同段的个数,求一个数列价值的平方期望,对 $10^9+7$ 取模 。 n≤200000 。 题解 https://codeforces.c ...
分类:
其他好文 时间:
2019-12-27 23:38:51
阅读次数:
82
Delphi FreeAndNil 是一个过程,并不是函数,看源代码就知道,它的主要作用是清空并释放对象 看代码的执行顺序,先置空,再释放 置空 清空指针指向内存的地址。 释放 释放实例占用的所有资源。Free后,指针不能再使用 更新时间:2019.12.27 来源于:https://www.cnb ...
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. Example: Input: 1 0 1 0 0 1 0 1 1 1 ...
分类:
其他好文 时间:
2019-12-27 13:47:34
阅读次数:
76