在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
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
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
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
【题目】
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
自己的几个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
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
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
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
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