码迷,mamicode.com
首页 >  
搜索关键字:free square    ( 7430个结果
7 Great Websites for Free Financial and Economic Data
I’m a financial data junkie, so I thought I’d share some of my favorite sites for free financal and economic data. I’ve also added links to these site ...
分类:Web程序   时间:2020-03-03 14:51:20    阅读次数:92
stack, heap, globle, constant, 的存储
stack: 栈,存放局部变量,有系统释放 heap: 堆, 存放动态分配的内存,有程序员自己手动释放。比如: int * p = (int * )malloc(4); free(p) 释放的是动态内存,p是局部变量,所以并未释放。 globle, 全局变量, 存放全局变量以及静态变量。有系统自动释 ...
分类:其他好文   时间:2020-03-03 00:56:33    阅读次数:65
查看centos的cpu和内存等信息
#查看CPU的个数cat /proc/cpuinfo |grep "physical id"|sort |uniq|wc -l #查看CPU的型号cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c #查看内存free -h #查看磁盘df -h ...
分类:其他好文   时间:2020-03-02 12:56:33    阅读次数:64
Qt Gui 第十四章
一、QThread 当要运行多线程,则需要继承该类,并重写对应的run()函数;当启动线程执行run函数的时候,则需要调用start函数;等待run函数执行完毕则是wait函数; 当在run函数中,用一个变量来标记是否一直循环执行的时候;最好该标记使用volatile 该关键字,例如:volatil ...
分类:其他好文   时间:2020-03-01 20:07:57    阅读次数:80
队列的ADT
Queue.h 1 #ifndef QUEUE_H_INCLUDED 2 #define QUEUE_H_INCLUDED 3 #include <stdbool.h> 4 5 typedef struct queue QUEUE; 6 7 QUEUE* createQueue(void); 8 Q ...
分类:其他好文   时间:2020-03-01 00:38:30    阅读次数:48
LUA_OBJECT
-- -- classic, object model. -- -- Copyright (c) 2014, rxi -- -- This module is free software; you can redistribute it and/or modify it under -- the t ...
分类:其他好文   时间:2020-02-29 17:32:46    阅读次数:70
数据结构与算法-编写实例
这篇算是学习过程中的备忘录,之前没有好好敲过这门课的代码,现在开始把每节课敲的代码记录下来,方便期末复习和以后使用。 第一节课:线性表的基本操作 #include <cstdio>//C++的编译 #include <cstdlib> #include <iostream>//c++输入输出 usi ...
分类:编程语言   时间:2020-02-29 13:12:20    阅读次数:67
Flip Game / POJ 1753asd
Flip game is played on a rectangular 4x4 field with two sided pieces placed on each of its 16 squares. One side of each piece is white and the other o ...
分类:其他好文   时间:2020-02-29 11:35:54    阅读次数:90
Wmixml挖矿病毒
1、病毒现象 安全设备报wmixml挖矿或者主机访问了wmixml矿池地址。 2、病毒处置 (1)、使用ProcessExplorer等工具找到挖矿的svchost.exe进程删除(2)、使用autoruns.exe检查开机启动,删掉病毒服务(3)、使用everything.exe查找appmg.d ...
分类:其他好文   时间:2020-02-28 22:43:35    阅读次数:90
windows安装sourceTree
1.sourceTree 下载地址:https://www.sourcetreeapp.com/ 安装时弹出以下界面,如果有账号就登录Bitbuckat账号,没有账号就点击 Create one for free 去注册一个免费的账号,因为打开的注册页面是在国外,可能需要科 学 上 网才能访问。 输 ...
分类:Windows程序   时间:2020-02-28 22:32:21    阅读次数:92
7430条   上一页 1 ... 56 57 58 59 60 ... 743 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!