码迷,mamicode.com
首页 >  
搜索关键字:lists    ( 2473个结果
Lua:使用MinGW编译Lua5.2.3
在Windows下使用MinGW64,或者TDM64-GCC进行编译,本来以为make mingw就行了,没想到出了点小问题,让人费解:referhttp://lua-users.org/lists/lua-l/2006-12/msg00255.html解决方法也是太简单了:* build$ cd ...
分类:其他好文   时间:2014-10-28 00:37:44    阅读次数:167
[LeetCode] Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他好文   时间:2014-10-27 22:58:01    阅读次数:269
LeetCode Merge Two Sorted Lists
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. 题目描述: 类似以前C语言做的输入两个链表,按照顺序大小将其连接。 不过这次试着用JAVA做,...
分类:其他好文   时间:2014-10-27 17:38:37    阅读次数:147
A Tour of Go Variables
Thevarstatement declares a list of variables; as in function argument lists, the type is last.package main import "fmt"var i intvar c, python, java bo...
分类:其他好文   时间:2014-10-26 21:01:48    阅读次数:232
【LeetCode】Add Two Numbers 解题报告
【题目】 You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it...
分类:其他好文   时间:2014-10-26 14:21:29    阅读次数:243
Exercise 34: Accessing Elements Of Lists
自己的几个list常用用法。mylist = [i for i in range(10)]mylist.pop(-1)mylist.append(9)mylist_1 = [i for i in range(10,20)]mylist_2 = zip(mylist, mylist_1)mylist....
分类:数据库   时间:2014-10-25 11:44:29    阅读次数:213
Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他好文   时间:2014-10-23 22:15:45    阅读次数:130
[Leetcode] Merge Two Sorted Lists
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.Solution:...
分类:其他好文   时间:2014-10-21 02:17:26    阅读次数:157
[LeetCode]Merge Two Sorted Lists
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. /** * Definition for singly-linked list. * publ...
分类:其他好文   时间:2014-10-20 21:28:05    阅读次数:233
LeetCode: Add Two Numbers 解题报告
Add Two NumbersYou are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes co...
分类:其他好文   时间:2014-10-20 18:50:54    阅读次数:111
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!