码迷,mamicode.com
首页 >  
搜索关键字:lse    ( 12373个结果
2018暑假第四周总结
通过这周的学习,深入的了解了JAVA的语法。掌握了JAVA中变量和标识符命名规则,其与C++中的命名规则还是存在一点小小的差异。还学到了包,类,方法命名时的一些小规则。学会了如何从键盘输入数据并打印出来。因为从JDK中引用了Scanner这个类,他的方法能接收控制台上输入的字符,将其转换为相应数据类 ...
分类:其他好文   时间:2018-08-05 12:59:16    阅读次数:113
GIT分布式版本控制
1.1Git诞生历史 我想大家还记得Linus torvalds在1991年时发布了Linux操作系统吧,从那以后Linux系统便不断发展壮大,因为Linux系统开源的特性,所以一直接受着来自全球Linux技术爱好者的贡献,志愿者们通过邮件向Linus发送着自己编写的源代码文件,然后由Linus本人 ...
分类:其他好文   时间:2018-08-05 11:53:06    阅读次数:168
Educational Codeforces Round 48 (Rated for Div. 2) ABCD
A. Death Note A. Death Note You received a notebook which is called Death Note. This notebook has infinite number of pages. A rule is written on the l ...
分类:其他好文   时间:2018-08-05 11:52:48    阅读次数:132
[PXE] linux(centos)PXE服务器搭建,安装,启动及pxe协议详解
本篇博客,主要讲述了[PXE] linux(centos)PXE无盘服务器搭建,安装,启动及pxe协议详解
分类:系统相关   时间:2018-08-05 10:58:14    阅读次数:236
两条带头结点的升序重复合并成一个无重复的升序链表
链表带头结点的合并,需要判断诸多情况,代码中已经全部列举
分类:其他好文   时间:2018-08-05 01:11:58    阅读次数:119
PAT 甲级 1144 The Missing Number
https://pintia.cn/problem-sets/994805342720868352/problems/994805343463260160 Given N integers, you are supposed to find the smallest positive integer ...
分类:其他好文   时间:2018-08-05 00:43:16    阅读次数:261
mssql sqlserver update delete表别名用法简介
转自:http://www.maomao365.com/?p=6973 摘要: 在sql脚本编写中,如果需要在update delete 中使用表别名的方法,必须按照一定的规则编写,否则将会出现相应的异常信息,如下所示: 实验环境:sqlserver 2008 R2 ...
分类:数据库   时间:2018-08-04 23:26:37    阅读次数:309
leetcode169 python3 92ms 求众数
```python3 class Solution: def majorityElement(self, nums): """ :type nums: List[int] :rtype: int """ freq = {} for i in nums: if i not ... ...
分类:编程语言   时间:2018-08-04 23:19:16    阅读次数:211
leetcode695 C++ 28ms 最大岛屿面积
```C++ class Solution { public: int rec(vector & grid, int i, int j){ if(i =grid.size() || j = grid[0].size()){ return 0; } if(grid[i][j] == 1){ grid[ ...
分类:编程语言   时间:2018-08-04 23:17:54    阅读次数:265
【 九九乘法表 】
希望帮助更多,刚刚入门python的同胞。
分类:其他好文   时间:2018-08-04 21:05:29    阅读次数:109
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!