码迷,mamicode.com
首页 > 2016年05月07日 > 全部分享
OC之集合
几种常见的集合: NSArray/NSMutableArray NSSet/NSMutableSet NSDictionary/NSMutableDictionary 1. 不可变有序数组: void Array() { // 创建 // 快速创建的方法只适于创建不可变数组 NSArray *s = @[@"jack", @"rose", @"jerry"...
分类:其他好文   时间:2016-05-07 11:28:11    阅读次数:162
LeetCode:Decode Ways
Decode Ways    My Submissions Question Editorial Solution Total Accepted: 68714 Total Submissions: 391367 Difficulty: Medium A message containing letters from A-Z is being encod...
分类:其他好文   时间:2016-05-07 11:28:01    阅读次数:137
内存管理---映射
Linux简化了分段机制,使得虚拟地址与线性地址总是一致,因此Linux的虚拟地址空间也为0~4G。Linux内核将这4G字节的空间分为两部分。将最高的1G字节(从虚拟地址0xC0000000到0xFFFFFFFF)供内核使用,称为“内核空间”。而将较低的3G字节(从虚拟地址0x00000000到0xBFFFFFFF)供各个进程使用,称为“用户空间“。因为每个进程可以通过系统调用进入内核,因此Li...
分类:其他好文   时间:2016-05-07 11:26:21    阅读次数:256
LeetCode:Maximum Depth of Binary Tree
Maximum Depth of Binary Tree Total Accepted: 142443 Total Submissions: 297439 Difficulty: Easy Given a binary tree, find its maximum depth. The maximum depth is the number of nodes ...
分类:其他好文   时间:2016-05-07 11:24:32    阅读次数:156
LeetCode:Delete Node in a Linked List
Delete Node in a Linked List Total Accepted: 79448 Total Submissions: 181414 Difficulty: Easy Write a function to delete a node (except the tail) in a singly linked list, given only ...
分类:其他好文   时间:2016-05-07 11:27:29    阅读次数:140
Java程序通过LDAP对用户进行登陆验证
在去年的一个南京项目中,客户方要求用户登陆需要在其他平台下进行认证,当时客户用的LDAP“数据库”管理方式,后来查阅Java已经对LDAP进行了封装,不需要下载其他jar包就可以实现。        补脑:【LDAP】是"Lightweight Directory Access Protocol"的缩写,中文翻译过来就叫“轻量目录访问协议”,看字面大概能猜出应该是以树状形存储数据的数据库,后来翻...
分类:编程语言   时间:2016-05-07 11:26:46    阅读次数:360
LeetCode:Add Digits
Add Digits Total Accepted: 92455 Total Submissions: 190510 Difficulty: Easy Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. Fo...
分类:其他好文   时间:2016-05-07 11:24:50    阅读次数:137
LeetCode:Implement Stack using Queues
Implement Stack using Queues Total Accepted: 38469 Total Submissions: 125942 Difficulty: Easy Implement the following operations of a stack using queues. push(x) -- Push element x...
分类:其他好文   时间:2016-05-07 11:25:07    阅读次数:176
Mysql的列索引和多列索引
Mysql数据库提供两种类型的索引,如果没正确设置,索引的利用效率会大打折扣却完全不知问题出在这。 CREATE TABLE test ( id INT NOT NULL, last_name CHAR(30) NOT NULL, first_name CHAR(30) NOT NULL, PRIMARY KEY (id), INDEX...
分类:数据库   时间:2016-05-07 11:24:45    阅读次数:330
笔记-集合
集合(collection)是一种聚集、组织了其他对象的对象。它定义了一种特定的方式,可以访问、管理所包含的对象(称为该集合的元素)。集合的使用者——通常是软件系统中的另一个类或对象——只能通过这些预定的方式与该集合进行交互。     集合可以分为两大类:线性集合和非线性集合:     线性集合是一种其元素按直线方式组织的集合,通常按照添加的顺序。     非线性集合时一种其元素按某...
分类:其他好文   时间:2016-05-07 11:24:24    阅读次数:116
gulp-webserver组件
Framework 7,运行环境组建,简单易用,不用运行apache及其他环境,节省系统资源,效率工作。...
分类:Web程序   时间:2016-05-07 11:24:53    阅读次数:184
LeetCode:Implement Queue using Stacks
Implement Queue using Stacks Total Accepted: 42449 Total Submissions: 124932 Difficulty: Easy Implement the following operations of a queue using stacks. push(x) -- Push element x...
分类:其他好文   时间:2016-05-07 11:25:35    阅读次数:157
SharePoint 2013 图文介绍匿名访问,及问题解决方法。
SharePoint 2013 图文介绍匿名访问 有人反复文档匿名无法设置成功,我很诧异就做了一边发现很正常,当然有一些问题,其实解决很简单。...
分类:其他好文   时间:2016-05-07 11:23:07    阅读次数:139
迷宫问题
问题描述 定义一个二维数组: int maze[5][5] = {0, 1, 0, 0, 0,0, 1, 0, 1, 0,0, 0, 0, 0, 0,0, 1, 1, 1, 0,0, 0, 0, 1, 0, };它表示一个迷宫,其中的1表示墙壁,0表示可以走的路,只能横着走或竖着走,不能斜着走,要求编程序找出从左上角到右下角的最短路线。 问题分析 在这个问题中,从开始位置按照4个方向进行搜索...
分类:其他好文   时间:2016-05-07 11:25:42    阅读次数:544
SyncThread用法
1.synchronized锁住一个方法 2.synchronized锁住一段代码块...
分类:其他好文   时间:2016-05-07 11:25:21    阅读次数:647
LeetCode:Balanced Binary Tree
Balanced Binary Tree Total Accepted: 110024 Total Submissions: 323130 Difficulty: Easy Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced bin...
分类:其他好文   时间:2016-05-07 11:23:03    阅读次数:150
jsp+mysql实现增加,查看功能
准备工作: (1)创建并使用数据库:create database student;   use test; (2)创建表:create table  ppp(sno char(7),sname  char(8)); (3)插入一条数据:insert   into   ppp  values(123,456); (4)显示数据:select*from ppp;(复习一下数据库知识) 开始...
分类:数据库   时间:2016-05-07 11:22:42    阅读次数:295
2951条   上一页 1 ... 64 65 66 67 68 69 70 ... 174 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!