码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
Using ASTC Texture Compression for Game Assets
By David Chait, Tegra Developer Technology Since the dawn of the GPU, developers have been trying to cram bigger and better textures into memory. Sometimes that is accomplished with more RAM but mo...
分类:其他好文   时间:2015-11-04 19:52:51    阅读次数:575
最大k个数,以及类模板
#include using namespace std;templateclass CTopK{public: CTopK(); ~CTopK(); T* m_Data; int GetTopK(const char* sFile, int& nTop);private:...
分类:其他好文   时间:2015-11-04 17:51:59    阅读次数:127
C# Image Resizer
This program is used to resize images. 1 using System; 2 using System.Windows.Forms; 3 using System.Drawing; 4 using System.IO; 5 class haha 6 { 7 ...
分类:Windows程序   时间:2015-11-04 17:47:19    阅读次数:229
C# 控制台程序实现 检查iP ,Ping 是否正常
using System;using System.Net;using System.Net.NetworkInformation;class Program{static void Main(string[] args){int count = 4;IPAddress addr = IPAddre...
分类:Windows程序   时间:2015-11-04 17:46:57    阅读次数:406
C# Rotating Oval
This program is used to show how to generate an oval.The moon's orbit around the sun is an oval two.锘縰sing System;using System.Windows.Forms;using Sys...
分类:Windows程序   时间:2015-11-04 17:31:31    阅读次数:357
Android Studio 之 no render target selected
今天第一次使用android studio,莫名其妙出现no render target selected的错误,没有设计界面,各种百度之后在stackoverflow.com/questions/22776653/no-rendering-target-selected-using-andro.....
分类:移动开发   时间:2015-11-04 17:29:48    阅读次数:1409
STL - 容器 - Map(二)
把Map用作关联式数组MapAdvanceTest.cpp#include #include #include #include #include "MapAdvanceTest.h"#include "../../Core/ContainerUtil.h"using namespace std;v...
分类:其他好文   时间:2015-11-04 16:06:36    阅读次数:171
堆排序
#include using namespace std;void CreatHeap(int a[],int n,int h){ int i,j,flag; int temp; i = h; j = 2*i + 1; temp = a[i]; flag = 0;...
分类:编程语言   时间:2015-11-04 13:05:41    阅读次数:255
计算器
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 char a[105]; 7 struct Node{ 8 Node *lson; 9 Node *rson; 10 ...
分类:其他好文   时间:2015-11-04 11:16:50    阅读次数:211
.NET项目笔记——适用于C/S下的CacheHelper
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Runtime;namespace Common{ ...
分类:Web程序   时间:2015-11-04 10:07:38    阅读次数:223
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!