码迷,mamicode.com
首页 > 2016年08月01日 > 全部分享
【LintCode】删除链表中的元素
问题分析: 声明当前指针和上一个指针即可。 问题求解: ...
分类:其他好文   时间:2016-08-01 06:55:50    阅读次数:123
232. Implement Queue using Stacks && 225. Implement Stack using Queues
232. Implement Queue using Stacks Implement the following operations of a queue using stacks. push(x) -- Push element x to the back of queue. pop() -- ...
分类:其他好文   时间:2016-08-01 06:55:28    阅读次数:205
JavaEE MyBatis
1、 简介 MyBatis本是apache的一个开源项目iBatis的升级版,2013年11月迁移到Github,是三层架构中持久层框架。 目前提供了Java、.NET、以及Ruby三种语言实现的版本。 2、 提供一种“半自动化”的ORM实现。这种半自动化是相对Hibernate等提供了全面的数据库 ...
分类:编程语言   时间:2016-08-01 06:53:49    阅读次数:134
entity framework 动态条件
entity framework 动态条件 问题:在实际编码过程中,根据不同的选择情况,会需要按照不同的条件查询数据集 如:状态confirmStatus ,如果为空的时候,查询全部,如果有具体值的时候,查询相应的值 同时还有其他条件,外键编号 task 等等。 这个时候,需要根据条件的值来判断是否 ...
分类:其他好文   时间:2016-08-01 06:54:00    阅读次数:144
151. Reverse Words in a String && 61. Rotate List && 189. Rotate Array
151. Reverse Words in a String Given an input string, reverse the string word by word. For example,Given s = "the sky is blue",return "blue is sky the ...
分类:其他好文   时间:2016-08-01 06:53:45    阅读次数:119
Excel Sheet Column Title
Given a positive integer, return its corresponding column title as appear in an Excel sheet. For example: ...
分类:其他好文   时间:2016-08-01 06:53:56    阅读次数:139
Rectangle Area
Find the total area covered by two rectilinear rectangles in a 2D plane. Each rectangle is defined by its bottom left corner and top right corner as s ...
分类:其他好文   时间:2016-08-01 06:54:13    阅读次数:130
Nested List Weight Sum I & II
Nested List Weight Sum I Given a nested list of integers, return the sum of all integers in the list weighted by their depth. Each element is either a ...
分类:其他好文   时间:2016-08-01 06:52:45    阅读次数:129
bzoj2827: 千山鸟飞绝 treap
离散化坐标,每个坐标开一棵以鸟的编号为关键字的平衡树。每次插入时打2个标记,同时更新自身。这个方法比较显然,而且好写。正解好像用很迷的方法乱搞了一波,然后用线段树不打标记就做出来了,并不会。 treap旋转没传引用,调了好久。 ...
分类:其他好文   时间:2016-08-01 06:55:03    阅读次数:164
[ZigBee] 15、Zigbee协议栈应用(一)——Zigbee协议栈介绍及简单例子(长文,OSAL及Zigbee入门知识)
1、Zigbee协议栈简介 协议是一系列的通信标准,通信双方需要按照这一标准进行正常的数据发射和接收。协议栈是协议的具体实现形式,通俗讲协议栈就是协议和用户之间的一个接口,开发人员通过使用协议栈来使用这个协议,进而实现无线数据收发。 如图1所示:Zigbee协议分为两部分,IEEE 802.15.4 ...
分类:其他好文   时间:2016-08-01 06:53:35    阅读次数:358
HTML基本元素(一)
HTML基本元素(换行符、段落、标题、水平线、文本格式化、预格式文本、字体、链接、锚点、注释) ...
分类:Web程序   时间:2016-08-01 06:52:35    阅读次数:219
73. Set Matrix Zeroes
题目: Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place. Follow up: Did you use extra space? A straight forwa ...
分类:其他好文   时间:2016-08-01 06:53:42    阅读次数:164
UIView的层次调整,及子view布局模式自动布局模式(停靠模式)
UIView*view1=[[UIView alloc]initWithFrame:CGRectMake(10,30,300,30)]; view1.backgroundColor=[UIColor redColor]; [self.window addSubview:view1]; [view1 ...
分类:其他好文   时间:2016-08-01 06:52:42    阅读次数:194
hdu 2256 Problem of Precision 构造整数 + 矩阵快速幂
http://acm.hdu.edu.cn/showproblem.php?pid=2256 题意:给定 n 求解 ? 思路: , 令 , 那么 , 得: 得转移矩阵: 但是上面求出来的并不是结果,并不是整数。需要加上, 由于 所以结果为 ...
分类:其他好文   时间:2016-08-01 06:51:48    阅读次数:133
简单的模拟登录Wap版新浪微博
环境:Ubuntu 16.04 python版本3.5+ ...
分类:其他好文   时间:2016-08-01 06:54:06    阅读次数:188
UltraPullToRefresh Demo
package com.lib.andlib_libtemp.example.dir.exam2;import android.graphics.Color;import android.os.Bundle;import android.view.View;import android.widget ...
分类:其他好文   时间:2016-08-01 06:54:10    阅读次数:233
Hibernate配置文档详解
hibernate.cfg.xml 中hibernate.hbm2ddl.auto配置节点如下:<properties><property name="hibernate.show_sql" value="true" /> <property name="hibernate.hbm2ddl.auto ...
分类:Web程序   时间:2016-08-01 06:53:43    阅读次数:116
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!