码迷,mamicode.com
首页 >  
搜索关键字:as2    ( 115个结果
[LeetCode#24]Swap Nodes in Pairs
Problem:Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Yo...
分类:其他好文   时间:2015-09-06 07:26:51    阅读次数:217
Swap Nodes in Pairs
题目:Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your al...
分类:其他好文   时间:2015-08-26 11:56:17    阅读次数:113
[LeetCode] Swap Nodes in Pairs
Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your algor...
分类:其他好文   时间:2015-08-26 10:42:25    阅读次数:139
24.Swap Nodes in Pairs (List; Two-Pointers)
Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your algor...
分类:其他好文   时间:2015-08-12 23:10:02    阅读次数:92
LeeCode-Swap Nodes in Pairs
Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your algor...
分类:其他好文   时间:2015-07-20 10:35:21    阅读次数:101
[leedcode 24] Swap Nodes in Pairs
Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your algor...
分类:其他好文   时间:2015-07-08 14:32:36    阅读次数:92
Leetcode 24 Swap Nodes in Pairs
Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your algor...
分类:其他好文   时间:2015-06-28 15:32:03    阅读次数:126
AS2.0鼠标跟随和拖动代码
1,鼠标跟随。 a: Mouse.hide();//隐藏鼠标,Mouse.show()显示鼠标。 MC1.startDrag(true);//直接利用函数实现。 b: Mouse.hide(); onEnterFrame=function(){//坐标赋值实现 MC1._x=_xmouse;//鼠标坐标赋值给MC1。 MC1._y=_ymouse; } 2,...
分类:其他好文   时间:2015-06-25 17:35:53    阅读次数:132
Swap Nodes in Pairs
Description:Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->...
分类:其他好文   时间:2015-06-14 21:14:03    阅读次数:116
AS2 的全屏自适应
function Move(obj, to_x, to_y, duration){ var _loc2 = new mx.transitions.Tween(obj, "_x", mx.transitions.easing.Strong.easeOut, obj._x, to_x, durat...
分类:其他好文   时间:2015-06-12 19:10:37    阅读次数:139
115条   上一页 1 ... 5 6 7 8 9 ... 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!