原创 python中的os模塊學習

Python OS模塊深度學習中的數據多是文件,所以處理數據階段和文件相關的操作非常重要,除了有IO模塊,os模塊就是對操作系統進行操作,使用該模塊首先要導入該模塊:import osos模塊常見函數列表:1、os.sep #當前操作系統

原创 數據結構-棧的順序存儲(5)

測試框架#include"Stack.h" #include<stdio.h> #include<stdlib.h> #include<string.h> #include"SeqList.h" ///*創建

原创 linux磁盤查看命令

df:列出文件系統的整體磁盤使用量; 選項與參數: -a :列出所有的文件系統,包括系統特有的 /proc 等文件系統; -k :以 KBytes 的容量顯示各文件系統; -m :以 MBytes 的容量顯示各文件系統; -h

原创 SRE Google運維解密——第二章Goolgle的生成環境介紹

SRE Google運維解密 Goolgle的生成環境介紹 1、硬件:物理服務器和軟件服務器,  物理服務器和已運行任何類型的軟件服務器,           物理服務器對資源管理採用集羣管理系統分配資源,成爲Brog。        

原创 對運維的理解

什麼是運維?什麼是遊戲運維? 目錄 什麼是運維?什麼是遊戲運維? 運維是指大型組織已經建立好的網絡軟硬件的維護,就是要保證業務的上線與運作的正常,在他運轉的過程中,對他進行維護,他集合了網絡、系統、數據庫、開發、安全、監控於一身的技術運維

原创 自動化運維技術Ansible

Ansible部署支持滾動式部署和金絲雀部署 常見流水線部署工具有ThoughtWorks Go、Atlassian 、Bamboo、Jenkins條 1、配置管理   Ansible   CFEngine    Chef    Pupp

原创 SpringMVC+Mybatis企業應用實戰(1)

1、Mybatis的優點:        (1)Mybatis提供了半自動化的ORM機制,對於業務邏輯實現人員而言,Hibernate會自動生產sql語句,但Mybatis則不會爲程序員在運行期間自動生產Sql語句。具體SQL需要程序員編

原创 排序算法-選擇排序

#include<stdio.h> #include<stdlib.h> #include<iostream> using namespace std; void slect_sort(int *ary,int n) { int i=

原创 數據結構#號創建樹法

// 井創建二叉樹.cpp : 定義控制檯應用程序的入口點。 // #include "stdafx.h" #include<stdlib.h> #include<stdio.h> using namespace std; type

原创 數據結構-c++模板的線性錶鏈式存儲

測試框架#include<iostream> #include"LinkList_cpp.cpp" using namespace std; struct Teacher { char name[64]; int age; };

原创 排序算法-插入排序

#include<stdlib.h> #include<stdio.h> using namespace std; void Insert_sort(int* arry, int count) { int i = 0; int j

原创 c++模板庫-線性表的順序存儲

測試框架:// c++模板庫-順序存儲.cpp : 定義控制檯應用程序的入口點。 // #include "stdafx.h" //#include"SList.h" #include"SList.cpp" #include<iostr

原创 排序算法-希爾排序

#include<stdlib.h> #include<stdio.h> using namespace std; void Shell_Sort(int* arry, int count) { int i = 0; in

原创 樹的遍歷

// 樹的遍歷.cpp : 定義控制檯應用程序的入口點。 // #include "stdafx.h" #include<stdlib.h> //二叉鏈表示法 typedef struct BiTNode { int data;

原创 數據結構-隊列的鏈式存儲(10)

測試框架#include<stdlib.h> #include<string.h> #include<iostream> #include"LinkQueue.h" void main() { //LinkQueue* Queue_C