码迷,mamicode.com
首页 >  
搜索关键字:go 学习资料    ( 12885个结果
快速排序的学习(基于Go)
快速排序中的算法思想 1. 分治思想 分治法的基本思想是:将原问题分解为若干个规模更小但结构与原问题相似的子问题。递归地解这些子问题,然后将这些子问题的解组合为原问题的解。 我们可以利用分治思想将杂乱无序的数组Arr[p,,r]分为以下几个步骤
分类:其他好文   时间:2014-08-15 01:26:06    阅读次数:222
配置Go开发及调试环境(LiteIDE + GoClipse) -- 笔记
这里以Windows7 64位为例,如果是32位环境请下载安装对应的程序。1. 安装golang1.2.21.3及1.3.1编译生成的二进制文件,无法使用LiteIDE23.2携带的gdb7.7进行调试。所以先远离1.3及1.3.1。路径默认C:\Go即可。2. 安装LiteIDE
分类:其他好文   时间:2014-08-14 23:28:46    阅读次数:289
sql查询其他服务器数据库表
exec sp_addlinkedserver 'abc', '', 'SQLOLEDB', '192.168.49.34' exec sp_addlinkedsrvlogin 'abc', 'false',null, 'CentermUA', '123'go--查询select * from...
分类:数据库   时间:2014-08-14 20:29:59    阅读次数:206
jQuery提示parsererror错误解决办法
jquery来处理ajax,用到了json。但是很诧异,jquery的ajax回调时一直调用了error函数(一直提示parsererror异常),success函数一次没执行过1 $.ajax({2 type:'POST',3 url:'/go.php?p=chat.chatCenter&a=se...
分类:Web程序   时间:2014-08-14 19:25:29    阅读次数:324
django模板中使用加法,以及变量赋值
加法 django中自带过滤add {{ num|add:'12' }} 这样就表示num加12,有了加就有减法了~~~ 还可以{{ num|add:total }}还可以与其他属性相加 变量赋值 {% with distance=5 %} {# 自定义的属性只在with标签内可用 #} {% endwith %}...
分类:其他好文   时间:2014-08-14 14:17:08    阅读次数:2052
go的开发环境配置
GO_DEV_TOOLsublime text2下载安装package control打开后,按ctrl + ~打开命令行,或者在view->show console,复制如下代码,执行import urllib2,os,hashlib; h = '7183a2d3e96f11eeadd761d77...
分类:其他好文   时间:2014-08-14 14:01:38    阅读次数:183
Python实战(1)
此次实战完全按照Python教程 - 廖雪峰的官方网站进行首先下载windows版本的Python2.7,附上下载链接http://www.python.org/ftp/python/2.7.6/python-2.7.6.msi。一切准备完毕,Python go!
分类:编程语言   时间:2014-08-14 13:45:08    阅读次数:168
HDU 1695(GCD)
GCDTime Limit:3000MSMemory Limit:32768KB64bit IO Format:%I64d & %I64u[Submit] [Go...
分类:其他好文   时间:2014-08-14 10:37:38    阅读次数:244
How to Write Go Code
How to Write Go Code Introduction This document demonstrates the development of a simple Go package and introduces the?go tool, the standard way to fetch, build, and install Go packages and comman...
分类:其他好文   时间:2014-08-14 01:40:48    阅读次数:653
【DataStructure】Charming usage of Set in the java
In an attempt to remove duplicate elements from list, I go to the lengths to take advantage of  methods in the java api. After investiagting the document of java api, the result is so satisfying that ...
分类:编程语言   时间:2014-08-14 01:30:17    阅读次数:256
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!