R+樹的c實現源碼,對應文章T. K. Sellis, N. Roussopoulos, C. Faloutsos: The R+-Tree: A Dynamic Index for Multi-Dimensional Objects.
上傳時間: 2014-05-25
上傳用戶:sunjet
This book is the most accurate and up-to-date source of information the STL currently available. ... It has an approach and appeal of its own: it explains techniques for building data structures and algorithms on top of the STL, and in this way appreciates the STL for what it is - a framework. Angelika Langer, Independent Consultant and C++ Report Columnist "A superbly authored treatment of the STL......an excellent book which belongs in any serious C++ developer s library." Jim Armstrong, President 2112 F/X, Texas. \n The C++ Standard Template Library (STL) represents a breakthrough in C++ programming techniques. With it, software developers can achieve vast improvements in the reliability of their software, and increase their own productivity.
標簽: information up-to-date available currently
上傳時間: 2015-10-31
上傳用戶:CHINA526
文件恢復及修補 C 語言源程序,希望能對大家有所幫助,用Turbo C 開發
上傳時間: 2015-11-28
上傳用戶:2525775
我用matlab寫的一個corner detector, 效果比現在流行的harris,susan,CSS等效果要好。 Algorithm is derived from: X.C. He and N.H.C. Yung, Curvature Scale Space Corner Detector with Adaptive Threshold and Dynamic Region of Support , Proceedings of the 17th International Conference on Pattern Recognition, 2:791-794, August 2004. Improved algorithm has been included in A Corner Detector based on Global and Local Curvature Properties and submitted to Optical Engineering.
標簽: detector matlab corner harris
上傳時間: 2013-12-30
上傳用戶:569342831
linux 下c語言 多線程實例 ,能讓讀者對在linux下用C編寫多線程有個切實理解。
上傳時間: 2016-09-06
上傳用戶:腳趾頭
眾所周知,MATLAB是一個功能強大的數學軟件,擅長于用矩陣運算完成各種數學功能。但是其程序需要在MATLAB環境下解釋執行,效率不高。如果能將它強大的函數庫用于C語言,利用C來編譯執行,MATLAB將能發揮更大的作用。所以,MATLAB從5.0開始已經提供了與外部C/C++程序的應用程序接口,為利用C語言調用MATLAB的函數提供了可能。
標簽:
上傳時間: 2014-01-12
上傳用戶:xiaoxiang
溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void) { int a=73,b=85,c=66 { if (a>=90) printf("a=A等級!!\n") else if (a>=80) printf("73分=B等級!!\n") else if (a>=70) printf("73分=C等級!!\n") else if (a>=60) printf("73分=D等級!!\n") else if (a<60) printf("73分=E等級!!\n") } { if (b>=90) printf("b=A等級!!\n") else if (b>=80) printf("85分=B等級!!\n") else if (b>=70) printf("85分=C等級!!\n") else if (b>=60) printf("85分=D等級!!\n") else if (b<60) printf("85分=E等級!!\n") } { if (c>=90) printf("c=A等級!!\n") else if (c>=80) printf("66分=B等級!!\n") else if (c>=70) printf("66分=C等級!!\n") else if (c>=60) printf("66分=D等級!!\n") else if (c<60) printf("66分=E等級!!\n") } system("pause") return 0 }
上傳時間: 2014-11-10
上傳用戶:wpwpwlxwlx
溫度華氏轉變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void) { int a=73,b=85,c=66 { if (a>=90) printf("a=A等級!!\n") else if (a>=80) printf("73分=B等級!!\n") else if (a>=70) printf("73分=C等級!!\n") else if (a>=60) printf("73分=D等級!!\n") else if (a<60) printf("73分=E等級!!\n") } { if (b>=90) printf("b=A等級!!\n") else if (b>=80) printf("85分=B等級!!\n") else if (b>=70) printf("85分=C等級!!\n") else if (b>=60) printf("85分=D等級!!\n") else if (b<60) printf("85分=E等級!!\n") } { if (c>=90) printf("c=A等級!!\n") else if (c>=80) printf("66分=B等級!!\n") else if (c>=70) printf("66分=C等級!!\n") else if (c>=60) printf("66分=D等級!!\n") else if (c<60) printf("66分=E等級!!\n") } system("pause") return 0 }
上傳時間: 2013-12-12
上傳用戶:亞亞娟娟123
在本光盤中提供了由譚浩強編著的《C++程序設計》(清華大學出版社出版)一書中各章的例題程序以及全部習題的參考解答,以方便教師進行教學,也便于讀者上機運行這些程序以及在此基礎上修改和調試程序。 程序按章設立文件夾(子目錄),例如文件夾c12中包含的是第12章全部例題的程序。程序的文件名以c開頭,與例題號一一對應,如c5-7.cpp是第5章例5.7的程序。對于教材中同一例題中包含兩個或多個程序的,在文件名中加了順序號,如c10-4-1.cpp是例10.4的第1個程序,c10-4-2.cpp是例10.4的第2個程序。 教材中所有的程序都是符合C++標準規定的,在GCC中能通過,但有的程序在Visual C++ 6.0中通不過。如果在Visual C++ 6.0環境下運行程序,需要對程序作一些修改。例如,如果程序c10-4-1.cpp在Visual C++ 6.0環境下編譯,第1行應改為“include <iostream.h>”,并將第2行“using namespace std ”取消即可順利通過編譯,其他類似。我們在教材的例題程序中還提供了能在Visual C++ 6.0環境下運行的程序,在文件名中加了"(VC)"字樣,如c10-4-2(VC) 表示它是對程序c10-4-2修改后能用于Visual C++ 6.0環境的程序。
上傳時間: 2017-02-04
上傳用戶:youth25
matlab與C語言的接口教程,能將matlab程序語言 直接轉換為c語言,非常詳細,千萬不過錯過,快點下吧!!!!
上傳時間: 2013-12-18
上傳用戶:稀世之寶039