码迷,mamicode.com
首页 >  
搜索关键字:le ge lt gt eq ne    ( 256714个结果
JSP基础知识
第一、二章 HTML、CSS、JavaScript自行复习 第三章 浏览器 / 服务器 一、Java Web工作原理 —>用户在客户端(浏览器)发送请求 —>Web服务器请求URL所标识的路径 —>Web服务器加上消息头发送给客户端的浏览器 —>客户端解析响应的HTML数据渲染到页面 1.2Serv ...
分类:Web程序   时间:2021-06-13 10:57:07    阅读次数:0
C. Number of Pairs(排序+二分)
You are given an array aa of nn integers. Find the number of pairs (i,j)(i<j)where the sum of ai+ajai+aj is greater than or equal to l and less than o ...
分类:编程语言   时间:2021-06-13 10:56:21    阅读次数:0
每日LeetCode - 125. 验证回文串(Python 3)
Python3 双指针 class Solution: def isPalindrome(self, s: str) -> bool: n = len(s) left, right = 0, n - 1 while left < right: while left < right and not s ...
分类:编程语言   时间:2021-06-13 10:55:47    阅读次数:0
MYSQL/HIVESQL笔试题:HIVESQL(一)分组求TopN/行转列/列转行
1 分组求TopN 一、先看数据: 使用HiveSQL常用的方式为: Select * from table, row_number() over(partition by item order by score desc) rank where rank<=2; 二、输出结果为: 三、解析:row ...
分类:数据库   时间:2021-06-13 10:48:09    阅读次数:0
重置数列
###重置数列 AcWing 3661 https://www.acwing.com/problem/content/3664/ 纯暴力1-100 #include <iostream> #include <cstring> #include <algorithm> using namespace ...
分类:其他好文   时间:2021-06-13 10:47:34    阅读次数:0
框架与浮动窗口
1 框架集与框架 ① 水平分割窗口 <frameset rows=”frame窗口1高度,frame窗口2高度,…”> <frame src=”页面文件1地址”/> <frame src=”页面文件2地址”/> … </frameset> ② 垂直分割窗口 <frameset cols=”frame ...
分类:其他好文   时间:2021-06-13 10:46:16    阅读次数:0
进制转换
//项目名称:进制转换/* */#include<iostream>// 头文件<iostream>定义了标准输入/输出流对象。包含了<iostream>也自动包含了<ios>、<streambuf>、<istream>、<ostream>和<iosfwd>。 //头文件<iostream>中的对象 ...
分类:其他好文   时间:2021-06-13 10:46:03    阅读次数:0
四则计算器
/*项目名称:简单的四则计算器*/// #include <stdio.h>/*是在程序编译之前要处理的内容,称为编译预处理命令。编译预处理命令还有很多,它们都以“#”开头,并且不用分号结尾,所以是c语言的程序语句。*/#include <math.h>/*意思是包含math库,实际上就是一个头文件 ...
分类:其他好文   时间:2021-06-13 10:45:51    阅读次数:0
实验七
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:其他好文   时间:2021-06-13 10:45:15    阅读次数:0
[Trie树]C. 【例题3】最长异或路径
解析 这道题我觉得恶心的地方就是要求一整条边的边权的异或给搞出来, 注意运算符不要用错了。 Code #include <bits/stdc++.h> #define N 100005 using namespace std; struct node { int x, to, nxt; }hd[N ...
分类:其他好文   时间:2021-06-13 10:42:08    阅读次数:0
256714条   上一页 1 ... 63 64 65 66 67 ... 25672 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!