码迷,mamicode.com
首页 >  
搜索关键字:模态视图 push pop    ( 17620个结果
idea 团队成员修改工程后push推送
idea 团队成员修改工程后push推送 当团队成员修改了工程后,可以进行commit和push操作; 比如我们代码里,加了一段输出; 我们先把项目提交到本地库; 右击项目 -> Git -> Commit 然后再提交到远程库 右击项目 -> Repository -> Push push确认,点P ...
分类:其他好文   时间:2020-07-19 11:30:42    阅读次数:61
数据结构之栈
栈 用数组实现一个顺序栈 用链表实现一个链式栈 编程模拟实现一个浏览器的前进、后退功能 用数组实现一个顺序栈 class Stack(object): def __init__(self): self.stack=[] def push(self,item): self.stack.append(i ...
分类:其他好文   时间:2020-07-19 11:29:50    阅读次数:48
225.用队列实现栈
原题链接 题解 可以直接使用一个queue直接解决,在进行push()操作的时候,当我们每插入一个元素,都要保证我们新插入的元素要在队头,这就要每一次插入的时候进行队列的反转,因为从开始插入的时候就反转,所以我们新插入的元素的前面的元素都是符合要求的(即后面插入的数据比前面插入的数据在队列的前面), ...
分类:其他好文   时间:2020-07-19 00:51:50    阅读次数:75
Codeforces Round #656 (Div. 3)
A 根据性质,\(a,b,c\) 中的最大值一定会在 $x,y,z $ 中出现两次 #include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; int a[3]; while(t --) { memset(a ...
分类:其他好文   时间:2020-07-18 22:42:22    阅读次数:86
逐层打印二叉树
struct BinaryTreeNode { int nvalue=0; BinaryTreeNode* pleft = nullptr; BinaryTreeNode* pright = nullptr; BinaryTreeNode* parent = nullptr;};vector<vec ...
分类:其他好文   时间:2020-07-18 22:37:14    阅读次数:87
leetcode347 前k个高频元素(Medium)
题目来源:leetcode347 前k个高频元素 题目描述: 给定一个非空的整数数组,返回其中出现频率前 k 高的元素。 示例 1: 输入: nums = [1,1,1,2,2,3], k = 2 输出: [1,2] 示例 2: 输入: nums = [1], k = 1 输出: [1] 提示: 你 ...
分类:其他好文   时间:2020-07-18 19:48:04    阅读次数:59
vue传参方式
//query传参,使用name跳转 this.$router.push({ name:'second', query: { queryId:'20180822', queryName: 'query' } }) //query传参,使用path跳转 this.$router.push({ path ...
分类:其他好文   时间:2020-07-18 15:24:47    阅读次数:80
hash-白兔的字符串
https://ac.nowcoder.com/acm/problem/15253太简单了,直接上代码吧! #include <iostream> #include <cstring> #include <cmath> #include <stdio.h> #include <cstdlib> #i ...
分类:其他好文   时间:2020-07-18 13:48:13    阅读次数:50
解决git 出现 Your account has been blocked问题
使用git 出现 Your account has been blocked 无法将本地仓库代码push到远程仓库 GitLab: Your account has been blocked. fatal: Could not read from remote repository. 解决方案如下: ...
分类:其他好文   时间:2020-07-18 11:22:31    阅读次数:313
CF662C Binary Table【FWT】
CF662C Binary Table 题意: 给出一个$n\times m$的$01$矩阵,每次可以反转一行或者一列,问经过若干次反转之后,最少有多少个$1$ \(n\le 20, m\le 10^5\) 题解: 可以把每一列看作一个二进制数,这样得到$m$个二进制数,记为$A$,翻转第$i$列就 ...
分类:其他好文   时间:2020-07-18 00:56:09    阅读次数:87
17620条   上一页 1 ... 52 53 54 55 56 ... 1762 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!