码迷,mamicode.com
首页 >  
搜索关键字:gcc gdb    ( 9547个结果
Debain-10.4 安装 oracle 11.2.0.4 数据库database软件
废话不多说了。一切见:setup-oracle11g.sh #!/bin/sh ##gcc-8 ###################################### cat <<eof>>/etc/profile export DISPLAY=192.168.157.1:0 alias cl ...
分类:数据库   时间:2020-07-28 17:09:12    阅读次数:86
dalao高精
#ifndef MY_BIGN_H#define MY_BIGN_H 1#pragma GCC system_header#include<cstring>#include<algorithm>#include<iostream>using std::max;using std::istream;u ...
分类:其他好文   时间:2020-07-28 16:52:02    阅读次数:67
jumpserver的安装
原文地址:https://www.cnblogs.com/kaishirenshi/p/9894519.html 为了保证服务器安全,加个堡垒机,所有ssh连接都通过堡垒机来完成,堡垒机也需要有身份认证,授权,访问控制,审计等功能。 Jumpserver 是一款由python编写开源的跳板机(堡垒机 ...
分类:其他好文   时间:2020-07-28 13:50:22    阅读次数:73
CentOS7服务器安装Git
安装编译 git 时需要的包 yum install -y curl-devel expat-devel gettext-devel openssl-devel zlib-devel yum install -y gcc perl-ExtUtils-MakeMaker 删除已有的 git yum r ...
分类:其他好文   时间:2020-07-27 23:54:02    阅读次数:84
Acwing 1291.轻拍牛头
题意: 给定一个序列ai,问序列中其他数中有多少个数是它的约数 思路: 暴力求法会超时。O(n²) 最优解:先储存每个数的个数,遍历x,每个x的倍数加上x的个数 注:最后每个数的答案要-1(减去本身) Code: #pragma GCC optimize(3) #pragma GCC optimiz ...
分类:Windows程序   时间:2020-07-27 13:36:55    阅读次数:80
Ubuntu 20.04 Install Guest Additions for VirtualBox
Ubuntu 20.04 Install Guest Additions for VirtualBox时有报错: This system is currently not set up to build kernel modules.Please install the gcc make perl ...
分类:系统相关   时间:2020-07-26 23:00:43    阅读次数:94
spring_6_AOP实现
目录1. AOP 概念2. AOP 编程的开发步骤3. 切面的名词解释4. AOP 的底层实现原理4.1 动态代理类的创建4.2 总结5. Spring 工厂如何加工原始对象1. AOP 概念 POP (Producer Oriented Programing) 面向过程(方法、函数)编程 —— C... ...
分类:编程语言   时间:2020-07-26 22:55:04    阅读次数:90
如何写 makefile
对于源文件较多的 c/c++项目,直接在 shell 中使用 gcc/clang 进行编译会十分麻烦,makefile 可以解决这一问题。Makefile 记录了项目的编译规则,当使用 make 命令进行项目的编译时,make 命令会使用 makefile 中记录的规则,一步步地编译、链接,生成目标 ...
分类:其他好文   时间:2020-07-26 15:40:29    阅读次数:62
网络流板子
Dinic模板 #pragma GCC optimize(2) #include <bits/stdc++.h> using namespace std; const int maxn = 1e5 + 10; //const int maxm = 1e3 * 2 + 10; const int in ...
分类:其他好文   时间:2020-07-26 01:58:19    阅读次数:59
3, nginx的yum 安装,添加新模块
1,yum安装的Nginx添加第三方模块支持tcp [root@centos7 ~]# nginx -V nginx version: nginx/1.16.1 built by gcc 4.8.5 20150623 (Red Hat 4.8.5-39) (GCC) built with OpenS ...
分类:其他好文   时间:2020-07-26 01:42:06    阅读次数:77
9547条   上一页 1 ... 22 23 24 25 26 ... 955 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!