码迷,mamicode.com
首页 >  
搜索关键字:struct enum    ( 22969个结果
剑指offer | 树的子结构 | 26
思路分析 其实就是递归判断左树和右树,但是一些判断条件需要仔细思考下. cpp /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * ...
分类:其他好文   时间:2021-01-26 11:49:40    阅读次数:0
日常分享:关于时间复杂度和空间复杂度的一些优化心得分享(C#)
前言 今天分享一下日常工作中遇到的性能问题和解决方案,比较零碎,后续会持续更新(运行环境为.net core 3.1) 本次分享的案例都是由实际生产而来,经过简化后作为举例 Part 1(作为简单数据载体时class和struct的性能对比) 关于class和struct的区别,根据经验,在实际开发 ...
分类:Windows程序   时间:2021-01-25 11:28:51    阅读次数:0
sysinfo系统调用
Linux中,可以用sysinfo来获取系统相关信息。 #include <sys/sysinfo.h> int sysinfo(struct sysinfo *info); 描述: 在Linux 2.3.16之前,sysinfo()用于返回以下结构中的信息: struct sysinfo { lo ...
分类:其他好文   时间:2021-01-22 12:08:44    阅读次数:0
vue 绑定style
vue 绑定style :style="{'padding-left':index==0?'22px':''} 1 <label v-for="(item,keyName,index) in ENUM.transportType" :style="{'padding-left':index==0?' ...
分类:其他好文   时间:2021-01-22 11:43:38    阅读次数:0
1.4面试题总结
1. Http contentType Etag相关 https://www.cnblogs.com/dark-duck/p/14288228.html 2. CSS position相关 https://www.cnblogs.com/dark-duck/p/14288292.html 3. JS ...
分类:其他好文   时间:2021-01-18 11:16:02    阅读次数:0
C++对二维数组、结构体之类的排序
对结构体排序 ''' #include<iostream> #include<algorithm> using namespace std; const int si= 101; struct segment { int l, r; bool operator < (const segment v) ...
分类:编程语言   时间:2021-01-18 11:05:01    阅读次数:0
安装nginx报错
错误一:安装nginx报错“src/os/unix/ngx_user.c:26:7: error: ‘struct crypt_data’ has no member named ‘current_salt’” “src/os/unix/ngx_user.c:26:7: error: ‘struct ...
分类:其他好文   时间:2021-01-18 10:49:25    阅读次数:0
【图论】TarjanLCA算法
const int MAXN = 200000 + 10; const int MAXM = 2000000 + 10; int n, m; vi G[MAXN]; int vis[MAXN]; int fa[MAXN]; int ans[MAXN]; struct Query { int x, y ...
分类:编程语言   时间:2021-01-16 12:11:10    阅读次数:0
服务端升级为select模型处理多客户端2
对fd_set的理解,可以参考下:https://www.cnblogs.com/wuyepeng/p/9745573.html int select(int nfds, fd_set* readset, fd_set* writeset, fe_set* exceptset, struct tim ...
分类:其他好文   时间:2021-01-16 12:04:47    阅读次数:0
政府网文件搜索列表页
http://sousuo.gov.cn/list.htm?q=&n=15&t=paper&childtype=&subchildtype=&pcodeJiguan=%E5%9B%BD%E5%8A%9E%E5%8F%91%E6%98%8E%E7%94%B5&pcodeYear=&pcodeNum=& ...
分类:其他好文   时间:2021-01-15 11:56:11    阅读次数:0
22969条   上一页 1 ... 29 30 31 32 33 ... 2297 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!