[C#] 纯文本查看 复制代码 ? 1 2 3 4 public BehaveResult TickMyactionAction(Tree sender) { Debug.Log("我的action"); return BehaveResult.Success; } [C#] 纯文本查看 复制代码 ...
分类:
其他好文 时间:
2017-02-01 18:05:30
阅读次数:
221
Ellipse Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1868 Accepted Submission(s): 792 Problem ...
分类:
其他好文 时间:
2017-02-01 16:27:38
阅读次数:
205
函数 函数是由事件驱动的或者当它被调用时执行的可重复使用的代码块。 定义函数 function 函数名(){ 函数体 } 注意 JavaScript对大小写十分敏感,所以这里的function必须小写。在函数调用时,也必须按照函数的相同名称来调用函数。 函数调用 函数在定义好之后,不能自动执行,需要 ...
分类:
编程语言 时间:
2017-02-01 14:58:33
阅读次数:
174
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. 本题目我第一个想到了用小顶堆来做,不是很难,直接上代码: /** * Definition for s ...
分类:
其他好文 时间:
2017-02-01 13:27:01
阅读次数:
174
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 此题考查链表的操 ...
分类:
其他好文 时间:
2017-02-01 12:39:40
阅读次数:
226
BASIC-1 闰年判断 BASIC-2 01串 ...
分类:
其他好文 时间:
2017-02-01 12:36:45
阅读次数:
221
You have a drawer that is full of two kinds of socks: red and black. You know that there are at least 2 socks, and not more than 50000. However, you d ...
分类:
其他好文 时间:
2017-02-01 12:33:34
阅读次数:
261
1.添加浮动窗口样式 2.添加浮动窗口js 3.html代码,放在body之后 ...
分类:
Web程序 时间:
2017-02-01 11:53:29
阅读次数:
228
http://poj.org/problem?id=1836 题意:给出一排士兵的身高,求出至少需要移除多少个士兵可以使得剩下的士兵往左看或者是往右看可以看到无穷远处。 思路:士兵的分布最终要呈三角形分布,我们从左边和右边分别求一个最长递增子序列,然后最后只需要一一枚举就可以了。 ...
分类:
其他好文 时间:
2017-02-01 11:48:34
阅读次数:
187
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1]. Note:Could you optimize your algorithm to us ...
分类:
其他好文 时间:
2017-02-01 11:48:03
阅读次数:
162