代码改变世界

随笔档案-2012年8月6日

关于谷歌地图GPS偏移问题的解决办法

2012-08-06 21:38 by javaspring, 305 阅读, 收藏,
摘要: http://blog.csdn.net/hushoubo/article/details/7708804 阅读全文

使用WebClient或HttpWebRequest模拟上传文件和数据

2012-08-06 21:36 by javaspring, 500 阅读, 收藏,
摘要: 使用WebClient或HttpWebRequest模拟上传文件和数据转载 C# Winform利用POST传值方式模拟表单提交数据(Winform与网页交互) 阅读全文

HTTP协议详解

2012-08-06 21:35 by javaspring, 186 阅读, 收藏,
摘要: HTTP协议详解 阅读全文

Interop(交互) Between C# and C++ 研究一

2012-08-06 21:33 by javaspring, 147 阅读, 收藏,
摘要: http://www.cnblogs.com/gandancing/archive/2008/10/14/1311234.html 阅读全文

程序C++ to C#交互

2012-08-06 21:32 by javaspring, 292 阅读, 收藏,
摘要: http://blog.csdn.net/foodvc/article/details/3344241C#与C++的非托管代码交互小试(C#调用C++的DLL) 阅读全文

C#与C/C++的交互 转自(warensoft)

2012-08-06 21:30 by javaspring, 143 阅读, 收藏,
摘要: http://blog.csdn.net/educast/article/details/7783037 阅读全文

Asp.Net+Jquery.Ajax详解6-$.ajaxSetup

2012-08-06 09:07 by javaspring, 200 阅读, 收藏,
摘要: 目录(已经更新的文章会有连接,从7月25日开始,每2到3天更新一篇):Asp.Net+Jquery.Ajax详解1-开篇(2012.07.25发)Asp.Net+Jquery.Ajax详解2-$.Load(2012.07.26发)Asp.Net+Jquery.Ajax详解3-$.get和$.post(2012.07.30发)Asp.Net+Jquery.Ajax详解4-$.getJSON(2012.07.31发)Asp.Net+Jquery.Ajax详解5-$.getScript(2012.08.04发)Asp.Net+Jquery.Ajax详解6-$.ajaxSetup(2012.08.06 阅读全文

无向图邻接表怎么建,求指点!! HDU 2544 最短路(Dijkstra、结题报告 精简版!)

2012-08-06 01:42 by javaspring, 313 阅读, 收藏,
摘要: 转载请注明出自cxb569262726:http://write.blog.csdn.net/postedit题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=2544代码:#include<iostream> #include<stdio.h> #include<stdlib.h> #include<string.h> #define MAXN 105 #define INF 100000 using namespace std; int map[MAXN][MAXN],used[105],d[105 阅读全文