文章列表
#include "stdafx.h"
#include <malloc.h>
#include <stdlib.h>
typedef struct Node
{
int data; //数据存储
struct Node * pNext; //链表的指针,指向下一个节点
}NODE,* PNODE; //NODE 等价于struct Node PNODE等价于struct Node*
PNODE create_list(void);//创建一个链表元素
void traverse_list(PNODE ...
是用Android Gallery组建 ,对图片实现拖拽效果 首先在layout文件中拖入Grallery图片显示的组建
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_pare ...