使用基本MVC2模式创建新闻网站 学号:201631062509 姓名:杨菓 1.什么是MVC MVC全名是Model View Controller,是模型(model)-视图(view)-控制器(controller)的缩写,一种软件设计典范,用一种业务逻辑、数据、界面显示分离的方法组织代码,将 ...
分类:
Web程序 时间:
2019-05-18 09:37:50
阅读次数:
189
心得:链表问题加头指针,头指针要加一个引用(两个引用:一个用来遍历,另一个输出头节点,注意head.next) 输出完要将后面没有添加上的节点添加上。 代码: ...
分类:
其他好文 时间:
2019-05-16 20:23:56
阅读次数:
141
一、Redis简介Redis是一个开源的内存中的数据结构存储系统,它可以用作数据库、缓存和消息中间件。它支持多种类型的数据结构,如字符串(Strings),散列(Hashes),列表(Lists),集合(Sets),有序集合(SortedSets或者是ZSet)与范围查询,Bitmaps,Hyperloglogs和地理空间(Geospatial)索引半径查询。其中常见的数据结构类型有String、
分类:
数据库 时间:
2019-05-16 09:14:50
阅读次数:
217
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
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
题目: 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
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
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 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