码迷,mamicode.com
首页 > 2015年09月21日 > 全部分享
如何获取帮助———— QQ群讨论摘要
QQ群对话整理(删除一些简单的回应),对一些重要的地方,我做了一些加粗宝玉 2015/9/211:49:05 这次题目还有个问题就是如何读取Excel,我想对于很多同学来说是个困难 Java读取Excel我也没做过,但是如果我做的话,我会有几种思路 直接Google(技术文章尽量用Go...
分类:其他好文   时间:2015-09-21 07:01:47    阅读次数:179
Best Time to Buy and Sell Stock II 解答
QuestionSay you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may co...
分类:其他好文   时间:2015-09-21 07:02:58    阅读次数:243
【软剑攻城队】团队介绍发布!
Email:qianlxc@126.comFree time:8:007:00a.m ~ 11:00 12:00p.mIntroduction:我是一个热情的人。开朗的人。活泼的人。(小编觉得用逗号分开比较好我喜欢交际,喜欢沟通。我的理想是做一个软件硬件都能有扎实基础,同时具备很强的工程实践能力与学...
分类:其他好文   时间:2015-09-21 07:02:48    阅读次数:146
Binary Tree Preorder Traversal
public List preorderTraversal(TreeNode root) { List ret = new ArrayList(); if(root == null) return ret; ...
分类:其他好文   时间:2015-09-21 07:00:14    阅读次数:182
Best Time to Buy and Sell Stock 解答
QuestionSay you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to complete at most one transac...
分类:其他好文   时间:2015-09-21 07:00:25    阅读次数:245
LeetCode Simplify Path
原题链接在这里:https://leetcode.com/problems/simplify-path/首先用string.split 把原有path 按照"/"分开 存入 String 数组strArr中。从肉往后扫描数组,遇到"." 和 " "直接跳过,遇到正常字符就压入栈中,遇到".."时若s...
分类:其他好文   时间:2015-09-21 07:01:15    阅读次数:157
Binary Tree Level Order Traversal
public List> levelOrder(TreeNode root) { List> ret = new ArrayList>(); if(root == null) return ret; ArrayDeque...
分类:其他好文   时间:2015-09-21 07:01:04    阅读次数:120
Triangle 解答
QuestionGiven a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given...
分类:其他好文   时间:2015-09-21 07:01:22    阅读次数:159
STM32 I2C 總線佔用問題解析
这几天解决 STM32 MCU的I2C 总线占用(bus BUSY) 问题,觉得是不错的学习,从文中可得知I2C问题的思考逻辑逻,文末并指出经常出错的问题点,在此分享给大家。
分类:其他好文   时间:2015-09-21 07:01:49    阅读次数:602
LeetCode Reverse Words in a String
原题链接在这里:https://leetcode.com/problems/reverse-words-in-a-string/把原有string s按照空格分开存入strArr中,再从strArr尾部开始一个一个加到StringBuikder中即可。Note: 1.这里学习了几个新的API, s....
分类:其他好文   时间:2015-09-21 06:58:42    阅读次数:150
第二课 HTML+CSS
HTML滚动字幕标签属性描述默认属性字幕从右到左滚动,循环hight高度direction滚动的方向,值:left 向右; up 向上; down 向下;hspace滚动的区域width宽度behavior值:slide 到达目的地后,停止滚动 alternate 字幕来回循环滚动sctolla.....
分类:Web程序   时间:2015-09-21 06:59:33    阅读次数:195
《第一行代码:Android》学习笔记:Activity生命周期
个人读书笔记,对书上的知识点根据个人理解进行部分补充。通过简单的描述,有助于对Activity life cycle的理解和记忆。
分类:移动开发   时间:2015-09-21 06:58:50    阅读次数:274
排序算法总结(C++版)
总结下学过的排序算法,方便以后用到。1.插入排序——将一个记录插入到已排序好的有序表中,从而得到一个新,记录数增1的有序表。void insertSort(int a[],int len){ for(int i = 1;i 0 && x 0;i --) for(int...
分类:编程语言   时间:2015-09-21 06:57:39    阅读次数:197
Less
简介CSS(层叠样式表)是一门历史悠久的标记性语言,同 HTML 一道,被广泛应用于万维网(World Wide Web)中。HTML 主要负责文档结构的定义,CSS 负责文档表现形式或样式的定义。作为一门标记性语言,CSS 的语法相对简单,对使用者的要求较低,但同时也带来一些问题:CSS 需要书写...
分类:其他好文   时间:2015-09-21 07:00:01    阅读次数:168
《第一行代码:Android》学习笔记:Activity & Intent
个人读书笔记,对书上的知识点根据个人理解进行部分补充。Activity life cycle部分将另起篇章。
分类:移动开发   时间:2015-09-21 06:58:17    阅读次数:176
[LeetCode] Peeking Iterator 顶端迭代器
Given an Iterator class interface with methods: next() and hasNext(), design and implement a PeekingIterator that support the peek() operation -- it e...
分类:其他好文   时间:2015-09-21 07:00:04    阅读次数:325
sass
SASS用法指南一、什么是SASSSASS是一种CSS的开发工具,提供了许多便利的写法,大大节省了设计者的时间,使得CSS的开发,变得简单和可维护。二、安装和使用2.1 安装SASS是Ruby语言写的,但是两者的语法没有关系。不懂Ruby,照样使用。只是必须先安装Ruby,然后再安装SASS。假定你...
分类:其他好文   时间:2015-09-21 06:59:04    阅读次数:210
1891条   上一页 1 ... 93 94 95 96 97 98 99 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!