在Web Services方法进行通信使用SOAP遵循标准的SOAP格式,该格式的一部分是在XML文档中编码的数据。XML文档包含一个Envelope根元素(由必需的Body元素和可选的Header元素构成)。Body元素由特定于消息的数据构成。可选的Header元素可以包含不与特定消息直接相关的其 ...
分类:
Web程序 时间:
2017-10-15 14:47:34
阅读次数:
235
Given a linked list, determine if it has a cycle in it. Given a linked list, determine if it has a cycle in it. Given a linked list, determine if it h ...
分类:
其他好文 时间:
2017-10-13 14:02:28
阅读次数:
146
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest l ...
分类:
其他好文 时间:
2017-10-13 10:24:16
阅读次数:
161
MVC,Model – View – Controller 的简写 Model 封装业务逻辑相关的数据及对数据的处理方法 View 向用户提供交互界面 Controller 负责控制Model和View 首先建立一个模板 在这里发现了一个问题(好像vs12没有模板,建不出来) 其中的Global.a ...
分类:
Web程序 时间:
2017-10-10 19:08:17
阅读次数:
202
Given a binary tree, find the subtree with minimum sum. Return the root of the subtree. Notice LintCode will print the subtree which root is your retu ...
分类:
其他好文 时间:
2017-10-08 13:35:42
阅读次数:
178
jquery ajax调用webservice(C#)要注意的几个事项: 1、web.config里需要配置2个地方 <httpHandlers> <remove verb="*" path="*.asmx"/> <add verb="*" path="*.asmx" validate="false ...
分类:
Web程序 时间:
2017-10-07 18:49:37
阅读次数:
168
评:空间余弦定理:空间四边形$ABCD$中$cos=\frac{|(|AB|^2+|CD|^2)-(|BC|^2+|AD|^2)}{2|AC||BD|}$,证明用向量. ...
分类:
其他好文 时间:
2017-10-06 20:36:18
阅读次数:
162
此讲适合参加全国联赛二试的同学介绍图论和我们学习的一般的知识点比如函数一样,首先要介绍一些定义,只是图论里的定义相对较多,这里给出部分在竞赛中常用到的:就像学函数的时候,学了定义和相关概念后我们要学一些性质,比如单调性等等。这里也给出几个图论的竞赛中常见的相关定理:从这个定理马上可以得出:注解[1]... ...
分类:
其他好文 时间:
2017-10-06 12:30:21
阅读次数:
244
评:此类题考场上就是取$n=1,2,3$找规律. ...
分类:
其他好文 时间:
2017-10-06 11:35:37
阅读次数:
127
原生 Promises 是在 ES2015 对 JavaScript 做出最大的改变。它的出现消除了采用 callback 机制的很多潜在问题,并允许我们采用近乎同步的逻辑去写异步代码。 可以说 promises 和 generators ,代表了异步编程的新标准。不论你是否用它,你都得 必须 明白 ...
分类:
其他好文 时间:
2017-10-02 23:48:21
阅读次数:
183