摘要: Probelm Discription:Two linked lists aregiven asA: 1, 2, 3, 4, 5, 6B: 7, 8, 9, 10, 11, 12how to create a third linked list so that it is in the following order.C: 1,7,2,8,…..,6,12First Method to solve the Problem...View Code 1 public class LinkedList 2 { 3 4 public static void main( String[] ... 阅读全文
posted @ 2012-05-03 20:42 imFolish 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 1 // EmunProcess.cpp : 定义控制台应用程序的入口点。 2 /////////////////////////////////////////////////////////////////////////////// 3 /// 4 /// Copyright (c) 2012 - <company name here> 5 /// 6 /// Original filename: EmunProcess.cpp 7 /// Project : EmunProcess 8 /// Date of creation : 2012-05-03 9 /// ... 阅读全文
posted @ 2012-05-03 14:29 imFolish 阅读(1351) 评论(0) 推荐(0) 编辑