- 浏览: 111326 次
- 性别:
- 来自: 上海
最新评论
-
onray:
31行的定义应该放在32行之后,不然会引起空指针异常
Java快速排序算法 -
Android_gqs:
快速排序是不需要进行两边数据交换的,因为总是把最左面的值作为参 ...
Java快速排序算法 -
smallbee:
lz,你的程序好像无法排序哦
你试试这个 public sta ...
Java快速排序算法 -
Magicloud:
我更关心如何防止白发……
男人如何防止脱发 -
剑事:
http://jfy3d.iteye.com/blog/337 ...
男人如何防止脱发
文章列表
sssssssssssssssss
- 博客分类:
- Java算法练习
2月2日(周三)、3日(周四)、4日(周五)、5日(周六)、6日(周日)、7日(周一)、8日(周二)放假七天,9日(周三)上班;
--------------------------------------------------------------------
文件名称:ACPI[6iku08ww].exe
驱动说明:ThinkPad ACPI电源管理驱动(Windows 7/Vista/XP/2000/Me/98SE)
所在路径:F:\ThinkPad_Drivers\ACPI[6iku08ww].exe
文件版本:1.60
文件大小:1.19M
下载日期:2010/7/3 10:35:20
-------------------------------------------------------- ...
package SwingPractise;
public class TestToday
{
public static final int status_0 = 0; //没有预定
public static final int status_1 = 1; //已经预定
Seat seat[][] = new Seat[4][7];
public static void main(String args[])
{
TestToday tt = new TestToday();
tt.init();
System.out.println("********* ...
static:
类变量(对象共享)可以用类名,对象名点取,间接使用。
类方法
1)static方法中不能直接使用非静态成员, 因为非静态成员与实例相关,通过对象点取间接使用
2)static方法中不能用this(与实例相关)
3)非static方法中可以使用static成员
static块:和数据成员时并列的位置,用于类初始化
类装入时执行一次(第一次创建对象,第一次使用
static成员,不同的静态块,按在类中的顺序执行)
注:只能修饰成员,不能修饰方法变量.
static方 ...
头文件
#ifndef __xlog_h
#define __xlog_h
#define DEFAULT_CONFIG "."
#define PRIORITY_NUM 5
#define P_FATAL 1
#define P_ERROR 2
#define P_WARN 3
#define P_INFO 4
#define P_DEBUG 5
void xlog_out(char *subject,int priority_level,char *fmt,...);
#endif
----------------------------------- ...
typedef struct _tagStudentInfo
{
int ID;
char * name;
int tel;
}StudentInfo,*stu;
typedef struct linknode
{
int number;
struct linknode *pNext;
}linknode,*nodetype;
#include <stdio.h>
#include <stdlib.h>
#include "test.h"
/////////////////////// ...
1.打印链表(PrintList)
2.建立链表(CreateList)
3.链表末尾插入节点(InsertList)
4.链表中删除指定节点(DeleteNode)
5.找链表中第一个出现的最小节点(FindMin)
#include "stdio.h"
typedef struct node
{
int data;
struct node* next;
}LNode,*Position,*List;
void PrintList(List L)
{
Position p;
p=L->next;
printf ...
create and query and deletecreate and query and deletecreate and query and delete
经典算法--单链表选择排序第一种:
#include<stdio.h>
#include<stdlib.h>
typedef struct node{
int data;
struct node *next;
}*Linklist,Node;
Linklist creat(int n)
{Linklist head,r,p;
int x,i;
head=(Node*)malloc(sizeof(Node));
r=head;
printf("输入数字:\n");
for(i=n;i>0;i--)
{scanf("%d",&am ...
struct student * create(void)
{
struct student * head;
struct student * p1,* p2;
n=0;
p1=p2=(struct student *)malloc(LEN);
// scanf("%ld,%f",&p1->num,&p1->score);
head = NULL;
while(p1->num!=0)
{
n = n + 1;
if(n==1) head = p1;
else p2->next = p1;
p2=p1;
...