码迷,mamicode.com
首页 >  
搜索关键字:front    ( 2274个结果
Qt5.9.1结合CEF开发基于chorm的浏览器(二)
将libcef_dll_wrapper编译方式设置为MD 因为使用的Qt是动态链接的,而cef模式使用的是静态链接的方式,所以在使用前需要将cef编译方式改成Multi-thread DLL(/MD),修改路径在在C/C++->Code Generation下的Runtime Library。重新编 ...
分类:其他好文   时间:2020-06-24 19:50:26    阅读次数:58
1017 Queueing at Bank
Suppose a bank has K windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. All the c ...
分类:其他好文   时间:2020-06-24 16:01:04    阅读次数:45
【LeetCode-图】课程表
题目描述 你这个学期必须选修 numCourse 门课程,记为 0 到 numCourse-1 。 在选修某些课程之前需要一些先修课程。 例如,想要学习课程 0 ,你需要先完成课程 1 ,我们用一个匹配来表示他们:[0,1] 给定课程总量以及它们的先决条件,请你判断是否可能完成所有课程的学习? 示例 ...
分类:其他好文   时间:2020-06-22 12:54:04    阅读次数:42
list 的使用
#include <list> #include <iostream> using namespace std; void printList(const list<int>&L){ for (list<int>::const_iterator it = L.begin(); it != L.end ...
分类:其他好文   时间:2020-06-20 19:23:54    阅读次数:54
简易先进先出队列-自用
简易先进先出队列-自用 /** * _______________*********_______________________ * ______________************_____________________ * ______________*************_____ ...
分类:其他好文   时间:2020-06-20 16:15:17    阅读次数:38
数据结构 - 数组模拟非循环和循环队列(Java实现)
数组模拟非循环队列 思路分析 \(front:\) 指向队头元素,\(rear:\) 指向队尾元素的后面一个元素,\(maxSize:\) 队列大小 队列为空:\(rear == front\),队列满:\(rear == maxSize\) 进队列:直接加入到 \(rear\) 的位置,然后 \( ...
分类:编程语言   时间:2020-06-15 13:53:07    阅读次数:59
POJ - 3278 Catch That Cow
目前只尝试了BFS,不会超时。 1 #include<iostream> 2 #include<queue> 3 using namespace std; 4 5 int line[200000]={0};//number line ,这里选择最大长度的2倍 6 int N,K; 7 queue<i ...
分类:其他好文   时间:2020-06-15 09:41:22    阅读次数:52
队列应用
n个人站一圈,数 1 2 1 2,数到1的出来,数到2 的继续保持一个圈。 输入 1 2 3 4 5 6 7 8 输出 1 3 5 7 2 6 4 8 #include<iostream> #include<queue> using namespace std; int main(){ int n, ...
分类:其他好文   时间:2020-06-14 19:06:04    阅读次数:75
正则表达式
正则表达式学习网址:https://www.runoob.com/regexp/regexp-tutorial.html 正则表达式在线测试:https://c.runoob.com/front-end/854 正则表达式学习示例 1、^InterGateway\.\d\.(user|name)$ ...
分类:其他好文   时间:2020-06-13 19:26:57    阅读次数:49
107. 二叉树的层次遍历 II
题目描述: 给定一个二叉树,返回其节点值自底向上的层次遍历。 (即按从叶子节点所在层到根节点所在的层,逐层从左向右遍历)例如:给定二叉树 [3,9,20,null,null,15,7],返回其自底向上的层次遍历为: [ [15,7], [9,20], [3] ] DFS:递归,从上到下遍历二叉树,每 ...
分类:其他好文   时间:2020-06-13 11:11:42    阅读次数:45
2274条   上一页 1 ... 9 10 11 12 13 ... 228 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!