码迷,mamicode.com
首页 >  
搜索关键字:using stacks    ( 53729个结果
C#事件委托、观察者模式、消息中心、消息转发
using System; namespace EventDelegation { /// <summary> /// 事件参数类 /// </summary> public class EventDate : EventArgs { public int eventID; public int a ...
分类:Windows程序   时间:2021-04-27 14:31:21    阅读次数:0
C++(template模板 && 类模板 成员函数类外实现)
C++(template模板 && 类模板 成员函数类外实现) 类模板,成员函数类外实现 #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> using namespace std; template<class ...
分类:编程语言   时间:2021-04-27 14:30:06    阅读次数:0
C#日期格式精确到毫秒
有时候我们要对时间进行转换,达到不同的显示效果 默认格式为:2009-6-24 14:33:34 如果要换成成200906,06-2009,2009-6-24或更多的该怎么办呢 我们要用到:DateTime.ToString的方法(String, IFormatProvider) using Sys ...
分类:Windows程序   时间:2021-04-27 14:28:09    阅读次数:0
利用质因数分解定理求与n互质的数的个数
今天我来分享一下如何利用素数分解定理求解与n互质的数的个数。 下面是代码 #include<bits/stdc++.h> using namespace std; long long fun(int x) { long long ans=x; int t=sqrt(x); int cnt; for( ...
分类:其他好文   时间:2021-04-26 14:12:06    阅读次数:0
c++(继承 &&菱形继承)
c++(继承 &&菱形继承) #define _CRT_SECURE_NO_WARNINGS #include <iostream> using namespace std; class Animal { public: int m_Age; }; class Sheep :virtual publ ...
分类:编程语言   时间:2021-04-26 13:09:57    阅读次数:0
识别无符号数并计算其值
识别无符号数并计算其值 要实现的功能: 通过状态转换图来识别无符号数,并计算其值进行输出 程序的要求如下: 1. 在程序内采用二维数组保存识别无符号数的状态转换矩阵; 2. 在识别无符号数的过程中,实现把输入的无符号数字符串转换成数值显示(不能使用类似atoi等函数实现); 3. 要采用矩阵查表的方 ...
分类:其他好文   时间:2021-04-24 13:57:56    阅读次数:0
CF208E Blood Cousins(树上启发式合并)
转化题目,题目要求的是K级祖先,我们可以对于每个询问先跳到祖先,那么就是求对于这个祖先,depth[u]+k的个数是多少个,然后-1就是答案 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair ...
分类:其他好文   时间:2021-04-24 13:41:24    阅读次数:0
天梯赛L3-025 那就别担心了 (30 分)
链接:https://pintia.cn/problem-sets/994805046380707840/problems/1336215880692482060 思路: 代码: #include<bits/stdc++.h> using namespace std; vector<int>ve[1 ...
分类:其他好文   时间:2021-04-24 13:26:55    阅读次数:0
Socket-异步封装客户端与服务端类
客户端: class SocketClient { private byte[] byteRcvbuf; public Socket Client { get; set; } public string SocketIP { get; set; } public uint SocketPort { ...
分类:其他好文   时间:2021-04-24 11:54:07    阅读次数:0
MySQL根据汉字首字母排序
SELECT areaName FROM area ORDER BY CONVERT ( areaName USING gbk ) COLLATE gbk_chinese_ci ASC 说明: areaName为列名 area为表名 ...
分类:数据库   时间:2021-04-24 11:51:48    阅读次数:0
53729条   上一页 1 ... 18 19 20 21 22 ... 5373 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!