tYPE-POOLS: truxs. DATA: BEGIN OF build, name(10) TYPE c, age(3) TYPE c, sex(2) TYPE c, spa TYPE p DECIMALS 2, END OF build. DATA tabbuild LIKE TABLE ...
分类:
Web程序 时间:
2019-10-07 18:01:39
阅读次数:
129
Well, to begin with, I'd like to say thank you to MIT open courses twice. It's their generosity that gives me the priviledge to enjoy the most outstan ...
分类:
其他好文 时间:
2019-10-05 22:27:34
阅读次数:
131
Week1 Question 4 Some of the problems below are best addressed using a supervised learning algorithm, and the others with an unsupervised learning alg ...
分类:
系统相关 时间:
2019-10-05 10:39:03
阅读次数:
157
Ax_introduction source a Frech mean to "state,quality,act,place where etc" 1)After the verb:a place for...ing 2)After the noun: Bx_list cemetery monas ...
分类:
其他好文 时间:
2019-10-04 23:14:21
阅读次数:
106
本教程是作者自己在学习Laravel和Vue时的一些总结,有问题欢迎指正。 Laravel是PHP的一个框架,Vue是前端页面的框架,这两个框架如何结合起来构建一个SPA(Single Page Application)呢?流程大致分为下面三步: 1. 页面请求Laravel的一个路由 2. 路由返 ...
分类:
其他好文 时间:
2019-10-04 18:38:52
阅读次数:
84
Solution $BEST$ 定理,套用完成后,由于每一个路径都对应了 $deg_1$ 这么多的不同起始方向的情况数,乘上去就可以了。 Code cpp include using namespace std; inline void read (int&a) { a = 0; char k = ...
分类:
其他好文 时间:
2019-10-02 23:22:17
阅读次数:
176
原因之前用SVN提交过的文件/文件夹,被标记为”add”状态,等待被加入到仓库。若此时你把这个文件删除了,SVN提交的时候还是会尝试提交这个文件,虽然它的状态已经是 “missing”了。解决方式直接在报错的文件夹首先 revert,然后选择 all。将原始的文件全部下载下来,然后再做对应的处理。再... ...
分类:
其他好文 时间:
2019-10-02 20:42:20
阅读次数:
98
class Solution { public: int maxProfit(int k, vector<int> &prices){ int n=prices.size(),v=0,p=0,ret=0; vector<int> profits; stack<pair<int,int>> vp; w... ...
分类:
其他好文 时间:
2019-10-02 12:58:58
阅读次数:
62
package sort /** * QuckSort best case O(nlgn), worst case O(n^2) * worst case occurred in: * 1. all element sorted * 2. partition unbalanced * */ clas... ...
分类:
其他好文 时间:
2019-09-30 12:45:21
阅读次数:
84
[TOC] Contest Info "Practice Link" |Solved|A|B|C|D|E|F| |: :|: :|: :|: :|: :|: :|: :| |5/6|O|O|O|O|?| | O 在比赛中通过 ? 赛后通过 ! 尝试了但是失败了 \ 没有尝试 Solutions A. ...
分类:
其他好文 时间:
2019-09-30 10:00:26
阅读次数:
79