码迷,mamicode.com
首页 >  
搜索关键字:collections deque counter    ( 12297个结果
.NET Core自定义TagHelper
代码: using Microsoft.AspNetCore.Razor.TagHelpers; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; name ...
分类:Web程序   时间:2020-10-21 20:55:42    阅读次数:36
C#宿舍管理系统之用户类和用户登录类
用户类,保存登录信息:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceGroupProject{///<summary>///此类专门用来保存登录用户的信息///方便使用之时调用///</summar
分类:Windows程序   时间:2020-10-19 22:46:51    阅读次数:93
C#宿舍管理系统之用户类和用户登录类
用户类,保存登录信息:usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceGroupProject{///<summary>///此类专门用来保存登录用户的信息///方便使用之时调用///</summar
分类:Windows程序   时间:2020-10-19 22:46:35    阅读次数:29
apache commons configuration
使用Commons Configuration可以很好的管理我们的配置文件的读写。 官网:http://commons.apache.org/proper/commons-configuration/ 需要使用到的包有:commons-collections、commons-configuratio ...
分类:Web程序   时间:2020-10-18 16:48:30    阅读次数:35
常用库
下面是ACM比赛中常用的几个库 #include<bits/stdc++.h> #include <iostream> #include <cstdio> #include <fstream> #include <algorithm> #include <cmath> #include <deque ...
分类:其他好文   时间:2020-10-13 17:54:20    阅读次数:37
C#的Socket通信Demo
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Sockets;using System.Text;using System.Threading;usi ...
分类:Windows程序   时间:2020-10-13 17:36:49    阅读次数:35
问题 H: Get Strong
数据很小,n = 20,这个应该可以直接搜索吧,我没试,我用的是折半搜索+二分+线段树维护区间最值,折半搜索就是先搜前10个,然后搜后10个,搜前10个的时候把每一个结果用一个pair<花费,权值>保存下来,然后按照花费排序,在第二次搜索的时候对于当前ww , vv需要的是一个前面搜索满足条件v<= ...
分类:其他好文   时间:2020-10-07 21:09:45    阅读次数:28
Asp.Net Core实战
使用.NET Core,团队可以更容易专注的在.net core上工作。比如核心类库(如System.Collections)的更改仍然需要与.NET Framework相同的活力,但是ASP.NET Core或Entity Framework Core可以更轻松地进行实质性更改,而不受向后兼容性的 ...
分类:Web程序   时间:2020-10-07 21:05:19    阅读次数:35
LeetCode103. 二叉树的锯齿形层次遍历
103. 二叉树的锯齿形层次遍历 锯齿形层次遍历,思路与二叉树的层次遍历相同,稍微做点改动,区别在于此处使用的是双端队列,分别从前到后和从后到前地遍历二叉树。代码如下 vector<vector<int>> zigzagLevelOrder(TreeNode* root) { deque<TreeN ...
分类:其他好文   时间:2020-10-06 19:57:09    阅读次数:25
nuxt中使用Vuex
引言 在nuxt中使用vuex,以模块方式引用——计数器为例 目录结构 js模块写法 // user.js// state为一个函数, 注意箭头函数写法const state = () => ({ counter: 6}) // mutations为一个对象const mutations = { i ...
分类:其他好文   时间:2020-09-23 23:43:24    阅读次数:50
12297条   上一页 1 ... 15 16 17 18 19 ... 1230 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!