自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (2)
  • 收藏
  • 关注

原创 Android实现隐藏导航栏

隐藏android导航栏

2023-02-23 16:15:29 860

原创 lua实现类与继承,多继承

--采用闭包方式实现类的概念----eg: 创建一个 Person类local function Person() local tab = { high = 0, wight = 0, } function tab:PerMessage() print(self.high,self.wight); end return function() return

2016-12-12 10:22:38 2211

原创 用闭包实现ipairs

local table1 = {2,3,4,5,6}print("the first print:");for k,v in ipairs(table1) do print(k,v)endfunction my_ipars(table) local key = 0 return function() key = key+1 return key,table[key] e

2016-12-07 17:38:50 317

原创 c++实现两有序链表合并成一个新链表

struct Node{ int x; Node * next; Node(int x1,Node * next1) { x = x1; next = next1; }};//--两个有序链表合并-假设排列方式为从小到大--Node * sortHead(Node * head1,Node * head2){ if(head1 == nullptr) return

2016-11-22 16:28:04 4152

原创 c++实现单链表逆序

struct Node{ int x; Node * next; Node(int x1,Node * next1) { x = x1; next = next1; }};Node * Inverted(Node * head){ Node * movepo = head;//标记原链表需要移动的节点 Node * Movenext = nullptr; Node

2016-11-22 13:58:46 2197

原创 lua实现快排,选择排序--与c++一样

function sortTable(table_array,lift_id,right_id)--lua实现快速排序if(lift_id local int_X    = table_array[lift_id]--标记中间点local   length = right_id--记录长度local start_id = lift_idwhile lift_id w

2016-11-21 10:27:45 677

Anti_TexturePacker_downcc.zip

将TexturePacker合成的大图拆分成散图工具,将大图plist拖进工具里直接点击里面的exe,非常实用

2020-03-28

图片压缩工具pngyu

图片压缩工具,将原有图片压缩到原来的1/3大小。对于游戏包体过大很有帮助~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

2017-09-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除