码迷,mamicode.com
首页 > 2015年08月05日 > 全部分享
_DataStructure_C_Impl:只有队尾指针的链式循环队列
//_DataStructure_C_Impl: #include #include #include typedef char DataType; typedef struct snode{ //链式堆栈结点类型定义 DataType data; struct snode *next; }LSNode; typedef struct QNode{ //只有队尾指针的链式循环队列类型定义 ...
分类:其他好文   时间:2015-08-05 06:40:53    阅读次数:192
【Android开源项目分析】自定义圆形头像CircleImageView的使用和源码分析
本文分为三大部分: CircleImageView的使用 CircleImageView源码分析 Android自定义View总结 CircleImageView项目源码下载: https://github.com/hdodenhof/CircleImageView 打开源码会发现主要就是一个继承了ImageView 的类——CircleImageView .java,代码优雅精致,效果很nic...
分类:移动开发   时间:2015-08-05 06:38:13    阅读次数:284
VC++中操作XML(MFC、SDK)转
[转]VC++中操作XML(MFC、SDK) XML在Win32程序方面应该没有在Web方面应用得多,很多Win32程序也只是用XML来存存配置信息而已,而且没有足够的好处的话还不如用ini。VC++里操作XML有两个库可以用:MSXML和XmlLite。MSXML又细分了两种接口:DOM和SAX2...
分类:编程语言   时间:2015-08-05 06:39:28    阅读次数:171
Windows和Ubuntu双系统,修复UEFI引导的两种办法
查看ubuntu是否是从 efi/uefi 启动的方法: 若 /sys/firmware/efi 存在则是,否则不是。shell命令:[ -d /sys/firmware/efi ] && echo UEFI || echo BIOShttp://linux.cn/article-4667-1.ht...
分类:Windows程序   时间:2015-08-05 06:37:17    阅读次数:187
Installing Ubuntu on a Pre-Installed Windows 8 (64-bit) System (UEFI Supported)
http://askubuntu.com/questions/221835/installing-ubuntu-on-a-pre-installed-windows-8-64-bit-system-uefi-supportedIf you are using Ubuntu 15.04+, many ...
分类:Windows程序   时间:2015-08-05 06:36:59    阅读次数:266
ArrayList与List接口如何理解
正确的写法:public static List> function(){ List> list = new ArrayList>(); return list; }错误写法1:public static List> function(){ List>...
分类:其他好文   时间:2015-08-05 06:37:10    阅读次数:141
*Path Sum II
题目:Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.For example:Given the below binary tree andsu...
分类:其他好文   时间:2015-08-05 06:38:24    阅读次数:95
《Android笔记3.5》 在 Android 中 Intent 的概念及应用
课程背景:Intent 是 Android 开发中的非常重要的基础概念,想要成为一个 Android 开发者,Intent 是必学的内容。核心内容:1.隐式 Intent2.显式 Intent可以通过隐式Intent,从外部启动某个APP的Activity:在AndroidManifest.xml中...
分类:移动开发   时间:2015-08-05 06:36:20    阅读次数:130
Permutations of Array
Given a collection of numbers, return all possible permutations.For example,[1,2,3]have the following permutations:[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,...
分类:其他好文   时间:2015-08-05 06:36:21    阅读次数:102
CMake 教程
CMake是一个跨平台的程序构建工具,比如起自己编写Makefile方便很多。介绍:http://baike.baidu.com/view/1126160.htm本文件不介绍CMake的基本语法,下面是篇不错的入门教程:http://www.ibm.com/developerworks/cn/lin...
分类:其他好文   时间:2015-08-05 06:36:10    阅读次数:231
Python的MySQLdb模块安装
1. 首先确认python的版本为2.3.4以上,如果不是需要升级python的版本 python -V 检查python版本2. 安装mysql, 比如安装在/usr/local/mysql目录下3. 下载 MySQL-python-1.2.2.tar.gz 地址 http://sourcefor...
分类:数据库   时间:2015-08-05 06:35:06    阅读次数:176
一切,从项目经理之路开始
我,工作了两年半说是这么说,但是经验很浅,谈得上就进步的,也就那么几个系统但是虽然如此,仍然坚持在IT行业,实现自己的抱负可是这第三次跳槽,改变了我预计的轨迹被加速了我应聘上了项目经理按照原计划,前五年我都应该活跃在技术岗位,为自己将来的管理路线,做技术铺垫,做业务积累五年后我走上设计路线,项目经理...
分类:其他好文   时间:2015-08-05 06:35:38    阅读次数:115
前端构建工具gulpjs的使用介绍及技巧
gulpjs是一个前端构建工具,与gruntjs相比,gulpjs无需写一大堆繁杂的配置参数,API也非常简单,学习起来很容易,而且gulpjs使用的是nodejs中stream来读取和操作数据,其速度更快。如果你还没有使用过前端构建工具,或者觉得gruntjs太难用的话,那就尝试一下gulp吧。本...
分类:Web程序   时间:2015-08-05 06:36:23    阅读次数:266
設定 Bootstrap/SASS/Bower/gulp (Windows平台)
請注意:在進行以下步驟前,你會需要先安裝git,可以參考這篇 git安裝教學前言時至今日,幾乎每個人都在討論bootstrap、less 或 sass。我們知道它們是比較新的前端技術,而且有開始愈來愈流流行的趨勢,但是到底要怎麼使用它們?想像一下我們現在有個新的專案會需要使用到 bootstrap,...
分类:Windows程序   时间:2015-08-05 06:32:12    阅读次数:158
前端构建工具gulp入门教程
本文假设你之前没有用过任何任务脚本(task runner)和命令行工具,一步步教你上手Gulp。不要怕,它其实很简单,我会分为五步向你介绍gulp并帮助你完成一些惊人的事情。那就直接开始吧。第一步:安装Node首先,最基本也最重要的是,我们需要搭建node环境。访问http://nodejs.or...
分类:其他好文   时间:2015-08-05 06:32:55    阅读次数:161
URAL 2034 : Caravans
最短路 , 动态规划(递推)
分类:其他好文   时间:2015-08-05 06:32:34    阅读次数:255
UVa 10020 - Minimal coverage(区间覆盖并贪心)
Given several segments of line (int the X axis) with coordinates [Li, Ri]. You are to choose the minimal amount of them, such they would completely co...
分类:其他好文   时间:2015-08-05 06:30:01    阅读次数:160
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!