码迷,mamicode.com
首页 >  
搜索关键字:lists    ( 2473个结果
使用基本MVC2模式创建新闻网站
使用基本MVC2模式创建新闻网站 学号:201631062509 姓名:杨菓 1.什么是MVC MVC全名是Model View Controller,是模型(model)-视图(view)-控制器(controller)的缩写,一种软件设计典范,用一种业务逻辑、数据、界面显示分离的方法组织代码,将 ...
分类:Web程序   时间:2019-05-18 09:37:50    阅读次数:189
21. 合并两个有序链表-LeetCode
心得:链表问题加头指针,头指针要加一个引用(两个引用:一个用来遍历,另一个输出头节点,注意head.next) 输出完要将后面没有添加上的节点添加上。 代码: ...
分类:其他好文   时间:2019-05-16 20:23:56    阅读次数:141
Redis简介以及和其他缓存数据库的区别
一、Redis简介Redis是一个开源的内存中的数据结构存储系统,它可以用作数据库、缓存和消息中间件。它支持多种类型的数据结构,如字符串(Strings),散列(Hashes),列表(Lists),集合(Sets),有序集合(SortedSets或者是ZSet)与范围查询,Bitmaps,Hyperloglogs和地理空间(Geospatial)索引半径查询。其中常见的数据结构类型有String、
分类:数据库   时间:2019-05-16 09:14:50    阅读次数:217
hashmap,解析
1 package java.util; 2 3 import sun.misc.SharedSecrets; 4 5 import java.io.IOException; 6 import java.io.InvalidObjectException; 7 import java.io.Seri... ...
分类:其他好文   时间:2019-05-15 17:59:26    阅读次数:132
[leetcode]160. Intersection of Two Linked Lists两链表交点
Write a program to find the node at which the intersection of two singly linked lists begins. For example, the following two linked lists: begin to in ...
分类:其他好文   时间:2019-05-14 09:33:27    阅读次数:113
LeetCode 21. Merge Two Sorted Lists合并两个有序链表 (C++)
题目: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. Exam ...
分类:编程语言   时间:2019-05-13 09:13:08    阅读次数:106
zpk文件分析
1 public function zpk_parser() { 2 3 $res_path = ROOT_PATH . "public/zpk/"; 4 $file_lists = glob($res_path . "*.zpk"); 5 foreach ($file_lists as $file... ...
分类:其他好文   时间:2019-05-12 22:27:31    阅读次数:140
网络编程
网络编程 网络:就是把计算机通过物理线路连接起来,形成网络,实现交换数据和共享信息。 网络通信的三要素: 1 IP地址:唯一的网络标识。 2端口号: 计算机中应用的标号,代表一个应用程序。0-1024系统使用或保留端口。 有效端口0-65536。 3通信协议: TCP 和 UDP。 网络通信模型 I ...
分类:其他好文   时间:2019-05-10 20:22:12    阅读次数:104
ARTS打卡第1周
A:Add Two Numbers Medium You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and e ...
分类:其他好文   时间:2019-05-05 23:10:38    阅读次数:153
【LeetCode算法-21】Merge Two Sorted Lists
LeetCode第21题 Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two li ...
分类:编程语言   时间:2019-05-05 17:15:08    阅读次数:112
2473条   上一页 1 ... 34 35 36 37 38 ... 248 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!