其他
文章平均质量分 92
师者为王
I am on my way to a data scientist
展开
-
CodeBlocks 项目基本配置基础
p { margin-bottom: 0.21cm; }a:link { } File 菜单 New :新建( Empty file/file 、 class 、 project 、 build target ) 。 Recent projects/files :最近打开的项目 / 文件 。 Import projects : Dev-C++ Project 、 VC6 dsw/dsp 、转载 2015-10-03 20:14:10 · 1959 阅读 · 0 评论 -
浅析__int64与long long
//为了和DSP兼容,TSint64和TUint64设置成TSint40和TUint40一样的数 //结果VC中还是认为是32位的,显然不合适 //typedef signed long int TSint64; //typedef unsigned long int TUint64; //ANSI C中规定long long才能表示64位 //参转载 2015-10-03 11:24:23 · 383 阅读 · 0 评论 -
j.c.Warnsdorff马踏棋盘算法
/*#include include”queue.h”struct point { int x;//马的x方向 int y;//马的y方向 };typedef struct Queue{ struct point queue[MaxQueueSize]; int front;//头指针 int rear;//尾指针 int转载 2015-10-21 18:30:04 · 1086 阅读 · 0 评论 -
MySQL 命令大全
1、连接Mysql 格式: mysql -h主机地址 -u用户名 -p用户密码1、连接到本机上的MYSQL。 首先打开DOS窗口,然后进入目录mysql\bin,再键入命令mysql -u root -p,回车后提示你输密码.注意用户名前可以有空格也可以没有空格,但是密码前必须没有空格,否则让你重新输入密码。如果刚安装好MYSQL,超级用户root是没有密码的,故直接回车即可进入到MYSQL中了转载 2016-04-26 23:45:30 · 325 阅读 · 0 评论 -
MAP getLastKnownLocation()返回null的解决
原文:http://blog.sina.com.cn/s/blog_74c22b210100sfix.html 这两天可憋坏我了,一直愁没什么题材可以充实我的博客,正巧最近遇到一个比较棘手的问题: 使用GPS定位无法获取当前的地理位置,即getLastKnownLocation方法始终返回null。后来一篇博文 getLastKnownLocation()返回null的解决 帮了我大忙,在此对该转载 2016-04-16 15:55:49 · 2486 阅读 · 0 评论