這篇文章主要講解了“PostgreSQL數(shù)據(jù)庫實現(xiàn)原理是什么”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“PostgreSQL數(shù)據(jù)庫實現(xiàn)原理是什么”吧!
創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設(shè)計制作、成都網(wǎng)站建設(shè),集網(wǎng)站策劃、網(wǎng)站設(shè)計、網(wǎng)站制作于一體,網(wǎng)站seo、網(wǎng)站優(yōu)化、網(wǎng)站營銷、軟文營銷等專業(yè)人才根據(jù)搜索規(guī)律編程設(shè)計,讓網(wǎng)站在運行后,在搜索中有好的表現(xiàn),專業(yè)設(shè)計制作為您帶來效益的網(wǎng)站!讓網(wǎng)站建設(shè)為您創(chuàng)造效益。
PostgreSQL的FSM文件,其數(shù)據(jù)結(jié)構(gòu)基礎(chǔ)是最大堆二叉樹,構(gòu)建/刪除/插入的相關(guān)代碼詳見代碼注釋.
#include "heap.h" static int heap[MAX_ELEMENTS]; static int counter = 0; //交換數(shù)據(jù) static void swap(int *i,int *j) { int tmp = *j; *j = *i; *i = tmp; } //打印堆信息 //n : 元素個數(shù) void print_max_heap() { for(int i = 1;i <= counter;i++) { printf("item[%d] is %d\n",i,heap[i]); } } //初始化堆數(shù)組 void init_heap(int *array,int n) { for(int i=0;i < n;i++) { heap[i] = array[i]; } counter = n; } //插入到最大堆 //item : 插入的值 //*n : 堆元素個數(shù) void insert_max_heap(int item) { if(HEAP_FULL(counter)){ return; } //整個算法思想是首先把插入的值放在堆中的最后一個位置,然后為其找到合適的位置(遞歸向上) int i = ++counter; //i ≠ 1是因為數(shù)組的第一個元素并沒有保存堆結(jié)點 for(;(i != 1) && (item > heap[i/2]);i = i / 2){ //如果插入的值比其父節(jié)點要大,把父節(jié)點的值交互到當(dāng)前節(jié)點 heap[i] = heap[i/2];//這里其實和遞歸操作類似,就是去找父結(jié)點 } //父節(jié)點的值比當(dāng)前值要大或者已到達根節(jié)點,設(shè)置當(dāng)前位置的值為要插入的值 heap[i] = item; } //刪除最大堆中的元素 //*n : 堆元素個數(shù) void delete_max_heap() { //刪除最大堆,總是刪除最大堆的根節(jié)點 if(HEAP_EMPTY(counter)) { return; } //算法思想 : 把最后一個元素作為根節(jié)點,然后尋找該節(jié)點在樹中合適的位置 int lastone = heap[--counter]; //父節(jié)點,初始化為1 int parent = 1; for (int son=parent*2;son <= counter;son=son*2) { //刪除父節(jié)點后,比較左右子節(jié)點的大小 if(son < counter && heap[son] < heap[son+1]) { //如果右子節(jié)點大于左子節(jié)點,切換到右子節(jié)點 son++; } if (lastone > heap[son]) { break;//已經(jīng)比兒子要大,退出 } //把子節(jié)點移到父節(jié)點 //parent的位置就是lastone移動到的位置 heap[parent]=heap[son]; //遞歸,到下一層子樹 parent = son; } //parent的位置就是最后一個元素所在的位置 heap[parent]=lastone;//lastone的實際位置已找到,賦值 } //構(gòu)建最大堆 //n : 元素個數(shù) //heap是初始化但未構(gòu)建的數(shù)組 void build_max_heap() { for(int i = counter;i > 1;i--) { //從最后一個元素(最下層)開始遍歷數(shù)組 if(heap[i] > heap[i/2]) { //子節(jié)點比父節(jié)點要大,交換父子節(jié)點 swap(&(heap[i/2]),&(heap[i])); for(int j=i*2;j < counter;j=j*2) { //遞歸處理子節(jié)點 if (j > counter) { break; } if(j < counter && heap[j+1] > heap[j]) { //切換至右子節(jié)點 j++; } if (heap[j] > heap[j/2]) { //如果子節(jié)點大于父節(jié)點,交換 swap(&(heap[j/2]),&(heap[j])); } }//end for#2 }//end if }//end for#1 } void build_max_heap_new() { for(int i = counter/2;i > 1;i--) { //從子節(jié)點上一層開始處理 //父節(jié)點為i int parent=i; //該節(jié)點的值 int temp=heap[parent]; for(int child=parent*2;child <=counter;child=child*2) { // if(child < counter && heap[child] < heap[child+1]) { //切換到右子節(jié)點 child++; } if(temp > heap[child]) //父節(jié)點比子節(jié)點大,退出該父節(jié)點構(gòu)成的樹循環(huán) break; else { //把子節(jié)點的值放到父節(jié)點中 heap[parent] = heap[child]; } //進入到子節(jié)點,遞歸處理 parent = child; } //已找到該父節(jié)點合適的位置,賦值 heap[parent]=temp; }//end for#1 }
感謝各位的閱讀,以上就是“PostgreSQL數(shù)據(jù)庫實現(xiàn)原理是什么”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對PostgreSQL數(shù)據(jù)庫實現(xiàn)原理是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!